CSS text-decoration-style属性
-
-
浏览器支持
表中的数字指定了完全支持该属性的第一个浏览器版本。数字后跟-ms-, -webkit-,-moz-或-o-指定使用前缀的第一个版本。属性 IE/Edge Chrome FireFox Safari Opera 属性名称 text-decoration-style 不支持 57.036.06.0 -moz-不支持 44.0 -
CSS语法
text-decoration-style: solid|double|dotted|dashed|wavy|initial|inherit; -
实例
设置不同类型的文本修饰样式:
尝试一下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; }
-
属性值
属性值 描述 solid 默认值。 线将显示为实线 double 该线将显示为双线 dotted 该线将显示为虚线 dashed 该线将显示为虚线 wavy 该线将显示为波浪线 initial 将此属性设置为其默认值。查看initial关键字 inherit 从其父元素继承此属性。查看inherit关键字 -