最新的Web开发教程
 

Style textDecorationColor Property

<Style对象

更改线的颜色,在一个带下划线的文本:

document.getElementById("myP").style.textDecorationColor = "red";
试一试»

定义和用法

该textDecorationColor属性指定的文字装饰的颜色(underlines, overlines, linethroughs)

注:textDecorationColor属性将只对一个可见的文字修饰元素的效果。


浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

该textDecorationColor属性没有在任何主流浏览器的支持。

Firefox支持替代方案,MozTextDecorationColor财产。


句法

返回textDecorationColor属性:

object .style.textDecorationColor

设置textDecorationColor属性:

object .style.textDecorationColor=" 属性值
描述
color 指定文本装饰的颜色
initial 将此属性设置为默认值。 阅读关于初始
inherit 继承其父元素此属性。 阅读关于继承

技术细节

默认值: currentColor
返回值: 一个字符串,表示元素的文本装饰-color属性
CSS版本 CSS3

相关页面

CSS参考: text-decoration-color property


<Style对象