CSS text-decoration-style 属性
实例
设置不同类型的 text-decoration 样式:
div.a {
text-decoration-line: underline;
text-decoration-style: solid;
}
div.b {
text-decoration-line: underline;
text-decoration-style: wavy;
}
div.c {
text-decoration-line: underline;
text-decoration-style: double;
}
div.d {
text-decoration-line: overline underline;
text-decoration-style: wavy;
}
定义和用法
text-decoration-style 属性设置文本装饰的类型(实线、波浪线、点线、虚线、双线)。
提示:同时请参阅text-decoration 属性,它是这三个属性的简写属性:
- text-decoration-line
- text-decoration-style
- text-decoration-color
| 默认值: | solid |
|---|---|
| 继承: | 否 |
| 动画制作: | 不支持。请参阅:动画相关属性。 |
| 版本: | CSS3 |
| JavaScript 语法: | object.style.textDecorationStyle="wavy" |
浏览器支持
表格中的数字注明了完全支持该属性的首个浏览器版本。
带 -moz- 的数字表示使用前缀的首个版本。
| 属性 | Chrome | IE | Firefox | Safari | Opera |
|---|---|---|---|---|---|
| text-decoration-style | 57.0 | 79.0 | 36.0 6.0 -moz- | 12.1 | 44.0 |
