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


CSS letter-spacing用法及代码示例


CSS中的letter-spacing属性用于设置文本字符之间的间隔行为,即增加或减小文本中字符之间的间隔。

用法:

letter-spacing:normal|length|initial|inherit;

属性值


  • 正常:当前字体的正常字母间距,即字符之间没有多余的空格。这是默认值。
    用法:
    letter-spacing:normal;

    例:

    <!DOCTYPE html> 
    <html> 
        <head> 
            <title>CSS letter-spacing Property</title> 
            <style> 
                p { 
                  letter-spacing:normal; 
                } 
            </style> 
        </head> 
        <body style = "text-align:center;"> 
            <h1 style = "color:green;"> 
                GeeksforGeeks 
            </h1> 
      
            <h2> 
                CSS letter-spacing Property 
            </h2> 
      
            <p> 
                This paragraph has letter-spacing:normal; 
            </p> 
        </body> 
    </html>

    输出:
    letterspacing

  • 长度:除了字符之间的默认间隔外,此模式还指定了额外的inter-character空间。负值也是允许的。

    用法:

    letter-spacing:length;

    例:

    <!DOCTYPE html> 
    <html> 
        <head> 
            <title>CSS letter-spacing Property</title> 
            <style> 
                p { 
                  letter-spacing:5px; 
      
                } 
            </style> 
        </head> 
        <body style = "text-align:center;"> 
            <h1 style = "color:green;"> 
                GeeksforGeeks 
            </h1> 
      
            <h2> 
                CSS letter-spacing Property 
            </h2> 
      
            <p> 
                This paragraph has letter-spacing:5px; 
            </p> 
        </body> 
    </html>

    输出:
    letterspacing

  • 初始:此模式将此属性设置为其默认值。
    用法:
    letter-spacing:initial;

支持的浏览器:下面列出了letter-spacing属性支持的浏览器:

  • 谷歌浏览器1.0
  • Internet Explorer 4.0
  • Firefox 1.0
  • Opera 3.5
  • 苹果Safari 1.0


相关用法


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