当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML Style textDecorationColor用法及代码示例


HTML DOM中的Style textDecorationColor属性用于设置text-decoration的颜色,例如下划线,上划线和line-throughs。它还可以返回text-decoration颜色。

用法:

  • 它返回textDecorationColor属性。
    object.style.textDecorationColor
  • 它用于设置textDecorationColor属性。
    object.style.textDecorationColor = "color|initial|inherit"

属性值:


  • color:这用于指定文本装饰的颜色。
  • initial:它将textDecorationColorproperty设置为其默认值。
  • inherit:此属性从其父元素继承。

返回值:它返回一个表示文本装饰颜色属性的字符串。

示例1:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>DOM Style textDecorationColor Property </title> 
    <style> 
        #gfg { 
            text-decoration:underline; 
        } 
    </style> 
  
</head> 
  
<body> 
  
    <center> 
        <h1 style="color:green; 
                   width:40%;">  
                GeeksForGeeks  
        </h1> 
        <h2>DOM Style textDecorationColor Property </h2> 
        
        <p id="gfg">  
          A Computer science portal for geeks 
        </p> 
  
        <button type="button" onclick="geeks()"> 
            Chanege Decoration 
        </button> 
  
        <script> 
            function geeks() { 
  
                //  Set underline color. 
                document.getElementById( 
                  "gfg").style.textDecorationColor =  
                  "magenta"; 
            } 
        </script> 
        
    </center> 
</body> 
  
</html>

输出:

  • 之前单击按钮:
  • 单击按钮后:

示例2:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>DOM Style textDecorationColor Property </title> 
    <style> 
        #gfg { 
            text-decoration:underline; 
        } 
    </style> 
  
</head> 
  
<body> 
  
    <center> 
        <h1 style="color:green; 
                   width:40%;">  
                GeeksForGeeks  
            </h1> 
        
        <h2>DOM StylestextDecorationColor Property </h2> 
        <p id="gfg"> 
          A Computer science portal for geeks 
        </p> 
  
        <button type="button" onclick="geeks()"> 
            Chanege Decoration 
        </button> 
  
        <script> 
            function geeks() { 
                
                // Set text decoration color. 
                document.getElementById( 
                  "gfg").style.textDecorationColor =  
                  "green"; 
            } 
        </script> 
    </center> 
</body> 
  
</html>

输出:

  • 之前单击按钮:
  • 单击按钮后:

支持的浏览器:以下列出了DOM Style textDecorationColor属性支持的浏览器:

  • 谷歌浏览器57.0
  • Firefox 36.0
  • Opera 44.0
  • 苹果Safari 7.1


相关用法


注:本文由纯净天空筛选整理自bestharadhakrishna大神的英文原创作品 HTML | DOM Style textDecorationColor Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。