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


HTML Style whiteSpace用法及代碼示例


HTML DOM中的Style whiteSpace屬性用於設置文本內容的空白。它返回給文本的空白屬性。

用法:

  • 它返回whiteSpace屬性。
    object.style.whiteSpace
  • 它用於設置whiteSpace屬性。
    object.style.whiteSpace = "normal|nowrap|pre|initial|inherit"

屬性值:


  • normal:它用於將空白折疊為單個空白並包裝文本。這是默認值。
  • nowrap:它用於將空白折疊為單個空白,並且沒有文本換行。
  • pre:它用於定義預格式化的文本。
  • pre-line:它用於將空格折疊為單個空格並將文本包裝在行製動器上。
  • pre-wrap:它用於保留空格並將文字換行。
  • intial:它將whiteSpace屬性設置為其默認值。
  • inherit:此屬性從其父元素繼承。

返回值:它返回一個表示元素的whiteSpace屬性的字符串。

範例1:

<!DOCTYPE html>  
<html>  
    <head>  
        <title> 
            DOM Style whiteSpace Property  
        </title> 
    </head>  
      
    <body>  
        <center>  
            <h1 style = "color:green;">  
                GeeksForGeeks  
            </h1>  
              
            <h2> 
                DOM Style whiteSpace Property  
            </h2>  
                  
            <p id = "gfg"> 
                A Computer science portal for geeks 
                A Computer science portal for geeks 
            </p>  
              
            <button type = "button" onclick = "geeks()">  
                Change 
            </button>  
              
            <script>  
                function geeks() {  
                    document.getElementById("gfg").style.whiteSpace 
                                = "pre-line";  
                }  
            </script>  
        </center> 
    </body>  
</html>                                    

輸出:
之前單擊按鈕:

單擊按鈕後:

範例2:

<!DOCTYPE html>  
<html>  
    <head>  
        <title> 
            DOM Style whiteSpace Property  
        </title> 
    </head>  
      
    <body>  
        <center>  
            <h1 style = "color:green;">  
                GeeksForGeeks  
            </h1>  
              
            <h2> 
                DOM Style whiteSpace Property  
            </h2>  
                  
            <p id = "gfg">A Computer science portal for geeks 
                A Computer science portal for geeks 
            </p>  
              
            <button type = "button" onclick = "geeks()">  
                Change 
            </button>  
              
            <script>  
                function geeks() {  
                    document.getElementById("gfg").style.whiteSpace 
                                = "pre-wrap";  
                }  
            </script>  
        </center> 
    </body>  
</html>                                 

輸出:
之前單擊按鈕:

單擊按鈕後:

支持的瀏覽器:下麵列出了DOM Style whiteSpace屬性支持的瀏覽器:

  • 蘋果Safari
  • 穀歌瀏覽器
  • Firefox
  • IE瀏覽器
  • Opera


相關用法


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