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


HTML Style letterSpacing用法及代码示例


HTML DOM中的Style letterSpacing属性用于设置字符之间的间隔。此属性允许设置字符之间的所需空格,还可以用于返回字符之间的空格。

用法:

  • 它返回letterSpacing属性。
    object.style.letterSpacing
  • 它用来设置letterSpacing属性。
    object.style.letterSpacing = "normal|length|initial|inherit"

属性值:


  • normal:当前字体的正常间距,即字符之间没有多余的空格。这是默认值。
  • length:除了字符之间的默认空格外,此模式还指定了额外的inter-character空间。负值也是允许的。
  • initial:它将letterSpacing属性设置为其默认值。
  • inherit:此属性从其父元素继承。

返回值:它返回一个字符串,表示字符之间的空格。

范例1:

<!DOCTYPE html>  
<html>  
    <head>  
        <title> 
            DOM Style letterSpacing Property  
        </title>  
    </head>  
      
    <body>  
        <center>  
            <h1 style = "color:green;">  
                GeeksForGeeks  
            </h1>  
              
            <h2>DOM Style letterSpacing Property </h2>     
              
            <p id = "GFG"> 
                A computer science portal for geeks 
            </p> 
              
            <button type = "button" onclick = "geeks()">  
                Submit  
            </button>  
              
            <script>  
                function geeks() {  
                    document.getElementById("GFG").style.letterSpacing 
                            = "8px";  
                }  
            </script>  
        </center>  
    </body>  
</html>                    

输出:

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

范例2:

<!DOCTYPE html>  
<html>  
    <head>  
        <title> 
            DOM Style letterSpacing Property  
        </title>  
    </head>  
      
    <body>  
        <center>  
            <h1 style = "color:green;">  
                GeeksForGeeks  
            </h1> 
              
            <h2> 
                DOM Style letterSpacing Property  
            </h2> 
              
            <p id = "GFG"> 
                A computer science portal for geeks 
            </p> 
              
            <button type = "button" onclick = "geeks()">  
                Submit  
            </button>  
              
            <script>  
                function geeks() {  
                    document.getElementById("GFG").style.letterSpacing 
                            = "-1.5px";  
                }  
            </script>  
        </center>  
    </body>  
</html>                    

输出:

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

支持的浏览器:DOM样式letterSpacing属性支持的浏览器如下:

  • 谷歌浏览器
  • IE浏览器
  • Firefox
  • Opera
  • 苹果Safari


相关用法


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