CSS text-decoration-style 属性
实例
显示不同类型的下划线:
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 | 57.0 | 79.0 | 36.0 6.0 -moz- | 12.1 | 44.0 |
定义和用法
text-decoration-style 属性规定线条如何显示。
默认值: | solid |
---|---|
继承: | 否 |
可动画化: | 否。请参阅 可动画化(animatable)。 |
版本: | CSS3 |
JavaScript 语法: | object.style.textDecorationStyle="wavy"知识兔 |