CSS中的text-decoration
属性有以下几个值:
none
:表示没有任何文本修饰效果。
underline
:表示文本下方有一条线。
overline
:表示文本上方有一条线。
line-through
:表示文本中间有一条线,通常用于表示删除线效果。
blink
:表示文本闪烁。
其中,underline
、overline
和line-through
这三个值可以同时使用,使用“空格”分隔,例如:
text-decoration: underline overline line-through;
同时,这三个值也可以使用color
属性来设置线条的颜色,例如:
text-decoration: underline red;
注:blink
这个值在大多数浏览器上已经被废弃,不建议使用。