目录

style textDecorationColor 属性

示例

更改带下划线的文本中线条的颜色:

document.getElementById("demo").style.textDecorationColor = "red";
亲自试一试 »

描述

textDecorationColor 属性指定文本装饰的颜色(下划线、上划线、穿线)。

笔记:textDecorationColor 属性仅对具有可见文本装饰的元素有效。


浏览器支持

Property
textDecorationColor 57 79.0 36.0 7.1 Webkit 44.0

语法

返回 textDecorationColor 属性:

object.style.textDecorationColor

设置 textDecorationColor 属性:

object.style.textDecorationColor = "color|initial|inherit"

属性值

Value Description
color Specifies the color of the text-decoration
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit

技术细节

默认值: 当前颜色
返回值: 一个字符串,表示元素的 text-decoration-color 属性
CSS版本 CSS3

相关页面

CSS 参考:文本装饰颜色属性