當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


CSS word-spacing用法及代碼示例


這是CSS屬性,可以增加或減少單詞之間的空白。此屬性隻能有兩個值,它們是normal和length。
用法:

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

屬性值:

  • Normal:它定義了單詞之間的正常間隔,即0.25em。這是默認值。示例:post_top_responsive
    <!DOCTYPE html> 
    <html> 
    <head> 
        <title> 
          CSS | word-spacing Property 
        </title> 
    </head> 
    <body> 
        <h1>The word-spacing Property</h1> 
      
        <h2>word-spacing:normal:</h2> 
        <p style="  word-spacing:normal; 
                    color:green;  
                    font-weight:bold; 
                    font-size:25px;"> 
            This is some text. This is some text. 
        </p> 
    </body> 
      
    </html>

    輸出:

  • Length:它在單詞之間定義了一個額外的空格(以px,pt,cm,em等表示)。負值也是允許的。
    Example:
    <!DOCTYPE html> 
    <html> 
    <head> 
        <title> 
          CSS | word-spacing Property 
        </title> 
    </head> 
    <body> 
        <h1>The word-spacing Property</h1> 
      
        <h2>word-spacing:length is 20px</h2> 
        <p style="  word-spacing:20px; 
                    color:green;  
                    font-weight:bold; 
                    font-size:25px;"> 
            GeeksforGeeks - A Computer Science Portal For Geeks! 
        </p> 
    </body> 
      
    </html>

    輸出:

    例:負值長度

    <!DOCTYPE html> 
    <html> 
    <head> 
        <title> 
          CSS | word-spacing Property 
        </title> 
    </head> 
    <body> 
        <h1>The word-spacing Property</h1> 
      
        <h2>word-spacing:length is -20px</h2> 
        <p style="word-spacing:-20px; 
                  color:green; 
                  font-weight:bold; 
                  font-size:25px;"> 
            GeeksforGeeks - A Computer Science Portal For Geeks! 
        </p> 
    </body> 
      
    </html>

    輸出:

  • 支持的瀏覽器:word-spacing屬性支持的瀏覽器如下所示:

    • 穀歌瀏覽器1.0
    • Internet Explorer 6.0
    • Firefox 1.0
    • Opera 3.5
    • Safari 1.0


相關用法


注:本文由純淨天空篩選整理自sarthak_ishu11大神的英文原創作品 CSS | word-spacing Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。