HTML - DOM样式对象textDecoration属性



HTML DOM样式对象textDecoration属性是用于设置textDecorationLine、textDecorationStyle和textDecorationColor属性的简写属性。

语法

设置textDecoration属性
object.style.textDecoration= "text-decoration-color text-decoration-line text-decoration-style | initial | inherit"
获取textDecoration属性
object.style.textDecoration;

属性值

描述
color 设置文本装饰颜色。
line 设置要使用的文本装饰线的类型。
style 设置文本装饰样式。
initial 用于将此属性设置为其默认值。
inherit 用于继承其父元素的属性。

返回值

它返回一个字符串值,表示元素的textDecoration属性,例如text-decoration-color、text-decoration-line和text-decoration-style。

HTML DOM样式对象“textDecoration”属性示例

以下示例为p元素设置textDecoration属性。

<!DOCTYPE html>
<html lang="en">
<head>
    <title>
        HTML DOM Style Object textDecoration Property
    </title>
</head>
<body>
    <p>Click to change text decoration.</p>
    <button onclick="fun()">Underline</button>
    <button onclick="funTwo()">Overline</button>
    <div id="decor">
        <p>
            See the effects here.
        </p>
    </div>
    <script>
        function fun() {
            document.getElementById("decor")
                .style.textDecoration = "underline solid red"
        }
        function funTwo() {
            document.getElementById("decor")
                .style.textDecoration = "overline double green"
        }
    </script>
</body>
</html>

支持的浏览器

属性 Chrome Edge Firefox Safari Opera
textDecoration 是 1 是 12 是 1 是 1 是 12.1
html_dom_style_object_reference.htm
广告