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


HTML Style wordBreak用法及代碼示例


DOM樣式wordBreak屬性用於設置或返回word-break屬性。 word-break屬性用於指定在行尾到達單詞時如何中斷單詞。文本中的換行符可以出現在特定的wordBreak屬性中。

用法:

  • 它用於返回wordbreak屬性:
    object.style.wordBreak 
  • 它用於設置wordBreak屬性:
    object.style.wordBreak = "normal|break-all|keep-all|initial|
    inherit" 

屬性值:


  • normal:此屬性使用默認的換行規則。
  • break-all:它用於在任何字符處打斷單詞以防止溢出。
  • Keep-all:與正常值相同。
  • break-word:它用於在任意點處打斷單詞以防止溢出。
  • initial:它將屬性設置為其默認值。

示例1:

<!DOCTYPE html>  
<html>  
    <head>  
        <style>  
            p {  
                width:140px;  
                border:1px solid #000000;  
            }  
              
            #gfg {  
                word-break:normal;  
            }  
        </style>  
    </head>  
    <body>  
        <center>  
            <h1>GeeksforGeeks</h1>  
            <h2>DOM Style wordBreak Property </h2>  
            <p id="gfg">GeeksforGeeksGeeksGeeks.  
            A computer science portal for geeks .</p>  
            <button onclick="myGeeks()">Submit</button> 
  
                <script> 
               function myGeeks() { 
         document.getElementById("gfg").style.wordBreak = "break-all"; 
                } 
      </script> 
        </center>  
    </body>  
</html>                     

在單擊按鈕之前:

單擊按鈕後:

示例2:

<!DOCTYPE html>  
<html>  
    <head>  
        <style>  
            p {  
                width:140px;  
                border:1px solid #000000;  
            }  
              
            #gfg {  
                word-break:break-all;  
            }  
        </style>  
    </head>  
    <body>  
        <center>  
            <h1>GeeksforGeeks</h1>  
            <h2>DOM Style wordBreak Property </h2>  
            <p id="gfg">GeeksforGeeksGeeksGeeks.  
            A computer science portal for geeks .</p>  
            <button onclick="myGeeks()">Submit</button> 
  
                <script> 
            function myGeeks() { 
        document.getElementById("gfg").style.wordBreak = "normal"; 
                } 
    </script> 
        </center>  
    </body>  
</html>                    

輸出:
在單擊按鈕之前:

單擊按鈕後:

支持的瀏覽器:下麵列出了DOM樣式wordBreak屬性支持的瀏覽器:

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


相關用法


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