小码哥的IT人生

Style textDecorationStyle 属性 详解

css3基础 2023-07-30 03:17:11小码哥的IT人生shichen

Style textDecorationStyle 属性

定义和用法

textDecorationStyle 属性设置或返回线(如果有)的显示方式。

另请参阅:

CSS 参考手册:text-decoration-style 属性

实例

在段落下方显示波浪线:

document.getElementById("myP").style.textDecorationStyle = "wavy";

完整实例【亲自试一试】:

<!DOCTYPE html>
<html>
<head>
<style>
p#demo {
  text-decoration: underline;
}
</style>
</head>
<body>
<p id="demo">
Hello world!
</p>
<p>点击“试一试”按钮可更改段落的 text-decoration-style。</p>
<button onclick="myFunction()">试一试</button>
<script>
function myFunction() {
  document.getElementById("demo").style.textDecorationStyle = "wavy";
}
</script>
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

语法

返回 textDecorationStyle 属性:

object.style.textDecorationStyle

设置 textDecorationStyle 属性:

object.style.textDecorationStyle = "solid|double|dotted|dashed|wavy|initial|inherit"

属性值

描述
solid 默认值。线条显示为单线。
double 线条将显示为双线。
dotted 线条将显示为虚线。
dashed 线条将显示为虚线。
wavy 线条将显示为波浪线。
initial 将此属性设置为其默认值。请参阅 initial
inherit 从其父元素继承此属性。请参阅 inherit

技术细节

默认值: solid
返回值: 字符串,表示元素的 text-decoration-style 属性
CSS 版本: CSS3

浏览器支持

表中的数字注明了首个完全支持该属性的浏览器版本。

Chrome Edge Firefox Safari Opera
Chrome Edge Firefox Safari Opera
57.0 79.0 36.0 12.1 44.0

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024