text-decoration
对文本块应用修饰,如下划线。
其可能的值为: none underline overline line-through blink
。
默认值为none,不应用修饰。
以下代码显示如何使用text-decoration和text-transform属性。
p { text-decoration: line-through; text-transform: uppercase; } p.one { text-decoration: underline; } p.two { text-decoration: overline; } p.three { text-decoration: line-through; } p.four { text-decoration: underline overline line-through; }