最新的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對象