最新的Web開發教程
 

Style textDecoration Property

<Style對象

設置為一個文本裝飾<p>元素:

document.getElementById("myP").style.textDecoration = "underline overline";
試一試»

定義和用法

textDecoration屬性設置或返回一個或更多的裝飾的文本。

Tip:要指定一個元素多於一種裝飾類型,指定裝飾類型的空間分隔的列表。


瀏覽器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

textDecoration屬性所有主流瀏覽器的支持。


句法

返回textDecoration屬性:

object .style.textDecoration

設置textDecoration屬性:

object .style.textDecoration="none|underline|overline|line-through|blink|initial|inherit"

屬性值

描述
none 定義一個普通的文本。 這是默認
underline 定義線條下的文字
overline 定義線條在文本
line-through 通過文字定義行
initial 將此屬性設置為默認值。 閱讀關於初始
inherit 繼承其父元素此屬性。 閱讀關於繼承

技術細節

默認值: 沒有
返回值: 一個String,代表裝飾添加到文本
CSS版本 CSS1

更多示例

返回的文本裝飾<p>元素:

alert(document.getElementById("myP").style.textDecoration);
試一試»

相關頁面

CSS教程: CSS文本

CSS參考: text-decoration屬性


<Style對象