参考资料

  1. 用于长引用的 HTML
  2. HTML 引文、引用和定义元素
  3. html表格标签详细说明以及案例
  4. HTML 提示
  5. Html转C#/JSP有哪些
  6. HTML 用于联系信息的
  7. HTML 视频(Videos)播放
  8. HTML 颜色

HTML 强调

HTML 强调标签:

  1. <em> - 表示强调,默认斜体显示

  2. <strong> - 表示重要内容,默认加粗显示

  3. <i> - 表示技术术语/外文短语等,默认斜体

  4. <b> - 表示关键词/产品名等,默认加粗

CSS扩展方法:

  1. 修改强调样式:

em {
  font-style: italic;
  color: #ff6600;
}
strong {
  font-weight: bold;
  background-color: yellow;
}
  1. 伪元素强调:

.important::before {
  content: "!";
  color: red;
  margin-right: 5px;
}
  1. 动画强调:

@keyframes highlight {
  0% { background-color: yellow; }
  100% { background-color: transparent; }
}
.highlight {
  animation: highlight 2s;
}
  1. 文本装饰强调:

.underline {
  text-decoration: underline wavy red;
}