CSS 参考手册

CSS @规则(RULES)

CSS 属性大全

CSS3 text-decoration-style 属性使用方法及示例

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 的使用语法

该属性的语法如下:

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大多数浏览器均不支持该属性。

浏览器图标
  • 火狐6+ -moz-,36+

  • Google Chrome×

  • Internet Explorer ×

  • Apple Safari ×

  • Opera ×

警告:text-decoration-style大多数浏览器当前不支持该属性。您最好避免使用此属性。

进一步阅读

请参考以下教程:CSS文本CSS边框

相关属性:text-decorationtext-decoration-linetext-decoration-color