CSS text-decoration 属性

CSS text-decoration 属性是用于设置文本的修饰线外观的(下划线、上划线、贯穿线/删除线 或 闪烁)它是 text-decoration-line, text-decoration-color, text-decoration-style, 和新出现的 text-decoration-thickness 属性的缩写。


实例

设置 h2、h3、h4 元素的文本修饰:

  1. <html>
  2. <head>
  3. <style type="text/css">
  4. h2 {text-decoration: line-through}
  5. h3 {text-decoration: underline}
  6. h4 {text-decoration:blink}
  7. a {text-decoration: none}
  8. </style>
  9. </head>
  10. <body>
  11. <h2>这是标题 2</h2>
  12. <h3>这是标题 3</h3>
  13. <h4>这是标题 4</h4>
  14. <p><a href="https://cankaoshouce.com">这是一个链接</a></p>
  15. </body>
  16. </html>

浏览器支持

表格中的数字注明了完全支持该属性的首个浏览器版本。

属性
text-decoration1.03.01.01.03.5

定义和用法

text-decoration 属性规定添加到文本的修饰。

注释:修饰的颜色由 "color" 属性设置。

说明

这个属性允许对文本设置某种效果,如加下划线。如果后代元素没有自己的装饰,祖先元素上设置的装饰会“延伸”到后代元素中。不要求用户代理支持 blink。

默认值:none
继承性:no
版本:CSS1
JavaScript 语法:object.style.textDecoration="overline"

可能的值

描述
none默认。定义标准的文本。
underline定义文本下的一条线。
overline定义文本上的一条线。
line-through定义穿过文本下的一条线。
blink定义闪烁的文本。
inherit规定应该从父元素继承 text-decoration 属性的值。

相关页面

CSS 教程:CSS 文本

分类导航