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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。