text-decoration-style CSS属性指定文本修饰要使用的线条类型。
注意:您也可以使用 text-decoration 属性设置 text-decoration-line。text-decoration 属性是 text-decoration-line、text-decoration-style 和 text-decoration-color 属性的速记属性。
下表为此属性的用法说明和版本历史记录,以及该属性在javascript脚本中的使用语法。
默认值: | solid |
---|---|
适用于: | 所有元素。它也适用于::first-letter和::first-line。 |
继承: | 没有 |
可动画制作: | 否。请参见 动画属性。 |
版本: | CSS3的新功能 |
JavaScript语法: | object.style.textDecorationStyle="wavy" |
该属性的语法如下:
text-decoration-style: [ solid | double | dotted | dashed | wavy ] one or more values | initial | inherit
下面的示例演示了如何使用text-decoration-style属性。
p { text-decoration: underline; -moz-text-decoration-style: dotted; /* Firefox */ text-decoration-style: dotted; }测试看看‹/›
下表描述了此属性的值。
值 | 描述 |
---|---|
solid | 该线显示为实线。这是默认值。 |
double | 该线显示为双线。 |
dotted | 该线显示为虚线。 |
dashed | 该线显示为虚线。 |
wavy | 该线显示为波浪线。 |
initial | 将此属性设置为其默认值。 |
inherit | 如果指定,则关联元素采用其父元素text-decoration-style的属性值。 |
text-decoration-style大多数浏览器均不支持该属性。
|
警告:text-decoration-style大多数浏览器当前不支持该属性。您最好避免使用此属性。
相关属性:text-decoration,text-decoration-line,text-decoration-color。