HTML DOM中的Style textDecoration屬性用於為文本設置一個或多個裝飾。我們可以為用空格分隔的文本指定一個或多個文本修飾。它返回給文本的textDecoration屬性。
用法:
- 它返回textDecoration屬性。
object.style.textDecoration
- 它用於設置textDecoration屬性:
object.style.textDecoration = "none|underline|overline| line-through|blink|initial|inherit"
屬性值:
- none:用於定義普通文本,是默認值。
- underline:它在文本下定義了一行。
- overline:它在文本上方定義了一行。
- line-through:它在文本中定義了一行。
- intial:它將textDecoration屬性設置為其默認值。
- inherit:此屬性從其父元素繼承。
返回值:它返回一個字符串,表示賦予文本的修飾。
示例1:
<!DOCTYPE html>
<html>
<head>
<title>DOM Style textDecoration Property </title>
</head>
<body>
<center>
<h1 style="color:green;">
GeeksForGeeks
</h1>
<h2>DOM Style textDecoration Property </h2>
<p id="gfg"> A Computer science
portal for geeks</p>
<button type="button" onclick="geeks()">
set Decoration
</button>
<script>
function geeks() {
document.getElementById(
"gfg").style.textDecoration =
"underline";
}
</script>
</center>
</body>
</html>
輸出:
- 在單擊按鈕之前:
- 單擊按鈕後:
示例2:
<!DOCTYPE html>
<html>
<head>
<title>
DOM Style textDecoration Property
</title>
</head>
<body>
<center>
<h1 style="color:green;">
GeeksForGeeks
</h1>
<h2>DOM Style textDecoration Property </h2>
<p id="gfg"> A Computer science portal for geeks
</p>
<button type="button" onclick="geeks()">
set Decoration
</button>
<script>
function geeks() {
document.getElementById(
"gfg").style.textDecoration =
"line-through overline";
}
</script>
</center>
</body>
</html>
輸出:
- 在單擊按鈕之前:
- 單擊按鈕後:
支持的瀏覽器:下麵列出了DOM Style textDecoration屬性支持的瀏覽器:
- 穀歌瀏覽器
- IE瀏覽器
- Firefox
- Opera
- 蘋果Safari
相關用法
- HTML Style top用法及代碼示例
- HTML Style right用法及代碼示例
- HTML Style borderRight用法及代碼示例
- HTML Style borderLeft用法及代碼示例
- HTML Style wordSpacing用法及代碼示例
- HTML Style textDecorationLine用法及代碼示例
- HTML Style textAlign用法及代碼示例
- HTML Style opacity用法及代碼示例
- HTML Style height用法及代碼示例
- HTML Style whiteSpace用法及代碼示例
- HTML Style columnRuleStyle用法及代碼示例
- HTML Style display用法及代碼示例
- HTML Style transformStyle用法及代碼示例
- HTML Style visibility用法及代碼示例
- HTML Style cssFloat用法及代碼示例
注:本文由純淨天空篩選整理自bestharadhakrishna大神的英文原創作品 HTML | DOM Style textDecoration Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。