例
设置<H1>,<H2>,文本装饰<h3>元素:
h1 {
text-decoration: overline;
}
h2 {
text-decoration: line-through;
}
h3 {
text-decoration: underline;
}
试一试» 定义和用法
该text-decoration属性指定添加到文本装饰。
Note:在CSS3的text-decoration属性是一个速记属性文字装饰线 , 文本装饰色和文本装饰风格 ,但是这是目前没有在任何主流浏览器的支持。
Note:在CSS3可以使用文本装饰色属性来改变装饰的颜色,否则颜色是相同的文字的颜色。
默认值: | none |
---|---|
遗传: | no |
动画: | no, see individual properties . Read about animatable |
版: | CSS1, renewed in CSS3 |
JavaScript语法: | object .style.textDecoration="underline" Try it |
浏览器支持
在表中的数字规定,完全支持该属性的第一个浏览器版本。
属性 | |||||
---|---|---|---|---|---|
text-decoration | 1.0 | 3.0 | 1.0 | 1.0 | 3.5 |
CSS语法
text-decoration: none|underline|overline|line-through|initial|inherit;
属性值
值 | 描述 | 播放 |
---|---|---|
none | 定义一个普通的文本。 这是默认 | 播放 ” |
underline | 定义文本下方的行 | 播放 ” |
overline | 定义文本上面一行 | 播放 ” |
line-through | 通过文字定义行 | 播放 ” |
initial | 将此属性设置为默认值。 阅读关于初始 | 播放 ” |
inherit | 继承其父元素此属性。 阅读关于继承 |
相关页面
CSS教程: CSS文本
HTML DOM参考: textDecoration property