关于text-decoration
作用:text-decoration属性规定添加到文本的修饰,下划线
,上划线
,删除线
等
text-decoration属性是以下三种属性的简写:
text-decoration-line
text-decoration-color
text-decoration-style
1. text-decoration-line
- solid (默认值。单线)
- double (双线)
- dotted (点状线)
- dashed (虚线)
- wavy (波浪线)
- overline (上划线)
- line-through (删除线)
- underline (下划线)
- initial (默认值)
- inherit (继承)
- none
2.text-decoration-color
3.text-decoration-style
注意:只有设置了 text-decoration-line才有效果
h1{
text-decoration:underline overline dotted red;
}
标签:color,text,decoration,关于,line,默认值,underline
From: https://www.cnblogs.com/chichi0002/p/17204636.html