CSS text-decoration属性
-
-
浏览器支持
表中的数字指定了完全支持该属性的第一个浏览器版本。数字后跟-ms-, -webkit-,-moz-或-o-指定使用前缀的第一个版本。属性 IE/Edge Chrome FireFox Safari Opera 属性名称 text-decoration 3.01.01.01.03.5 -
CSS语法
text-decoration: text-decoration-line text-decoration-color text-decoration-style|initial|inherit; -
实例
为<h1>,<h2>和<h3>元素设置不同的文本装饰:
尝试一下h1 { text-decoration: overline; } h2 { text-decoration: line-through; } h3 { text-decoration: underline; } h3 { text-decoration: underline overline; }
-
属性值
属性值 描述 text-decoration-line 设置要使用的文本修饰类型(如下划线,上划线,直线) text-decoration-color 设置文本修饰的颜色 text-decoration-style 设置文本修饰的样式(如实心,波浪,点线,虚线,双) initial 将此属性设置为其默认值。查看initial关键字 inherit 从其父元素继承此属性。查看inherit关键字 -