文字装饰

text-decoration 属性用于设置或删除文本中的装饰。

h1 { text-decoration: none; }
h2 { text-decoration: overline; }
h3 { text-decoration: line-through; }
h4 { text-decoration: underline; }

text-decoration 可以与 text-decoration-style 和 text-decoration-color 结合使用,作为速记属性:

.title { text-decoration: underline dotted blue; }

这是一个速记版本

.title {
  text-decoration-style: dotted;
  text-decoration-line: underline;
  text-decoration-color: blue;
}

应该注意,Firefox 仅支持以下属性

  • 文字装饰色
  • 文字装饰线
  • 文字装饰风格
  • 文字装饰,跳跃