text-decoration-style
属性用于指定文本装饰线的样式,如下划线、删除线等。这个属性可以设置为以下几个值:
solid
:实线double
:双实线dotted
:点线dashed
:虚线wavy
:波浪线
语法
text-decoration-style: solid|double|dotted|dashed|wavy;
值
solid
:实线double
:双实线dotted
:点线dashed
:虚线wavy
:波浪线
示例
a { text-decoration-style: solid; } p { text-decoration-style: wavy; }
在上面的示例中,链接的下划线使用实线样式,而段落的文本装饰线使用波浪线样式。通过设置不同的 text-decoration-style
值,可以为文本装饰线赋予不同的样式,以增强页面的视觉效果。