text-decoration

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

 

语法

h {text-decoration:overline}
h {text-decoration:line-through}
h {text-decoration:underline}

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

例子

HTML

<h3>This is heading 1</h1>

CSS

h3 {text-decoration:underline;}

执行结果

This is heading 3

参考

相关链接

外部链接