CSS 文字装饰

文字装饰

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

text-decoration: none; 通常用于从链接上删除下划线:

实例

  1. a {
  2. text-decoration: none;
  3. }

其他 text-decoration 值用于装饰文本:

实例

  1. h1 {
  2. text-decoration: overline;
  3. }
  4. h2 {
  5. text-decoration: line-through;
  6. }
  7. h3 {
  8. text-decoration: underline;
  9. }

注释:建议不要在非链接文本加下划线,因为这经常会使读者感到困惑。