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


HTML Style borderLeft用法及代碼示例


DOM樣式borderLeft屬性用於設置或返回元素的三個不同的border-left屬性,例如border-left-width,border-left-style和border-left-color。

用法:

  • 它用於返回borderLeft屬性。
    object.style.borderLeft
  • 它用於設置borderLeft屬性。
    object.style.borderLeft = "width style color|initial|inherit"

屬性值:


  • width:這將設置左邊框的寬度。
  • style:這將設置左邊框的樣式。
  • color:這將設置左邊框的顏色。
  • initial:這會將屬性設置為其默認值。
  • inherit:這將從其父元素繼承該屬性

返回值:它返回一個字符串值,該字符串值表示元素左邊框的寬度,樣式和/或顏色。

範例1:

<!DOCTYPE html>  
<html>  
    <head>  
        <title> 
            DOM Style borderLeft Property  
        </title>  
    </head>  
      
    <body>  
        <center>  
            <h1 style = "color:green;width:50%;" id = "sudo">  
                GeeksForGeeks  
            </h1>  
              
            <h2>DOM Style borderLeft Property </h2><br> 
              
            <button type = "button" onclick = "geeks()">  
                Submit  
            </button>  
              
            <script>  
                function geeks() {  
                document.getElementById("sudo").style.borderLeft  
                                            = "thick solid green";  
            }  
            </script>  
        </center>  
    </body>  
</html>                    

輸出:
之前單擊按鈕:

單擊按鈕後:

範例2:

<!DOCTYPE html>  
<html>  
    <head>  
        <title> 
            DOM Style borderLeft Property 
        </title>  
    </head>  
      
    <body>  
        <center>  
            <h1 style = "color:green;">  
                GeeksForGeeks  
            </h1>  
              
            <h2>DOM Style borderLeft Property </h2>  
              
            <h3 style = "border:2px solid red;width:50%;"
                id = "sudo">geksforgeeks</h3>  
            <br>  
              
            <button type = "button" onclick = "geeks()">  
                Submit  
            </button>  
              
            <script>  
                function geeks() {  
                    document.getElementById("sudo").style.borderLeft 
                                            = "thick dotted green";  
                }  
            </script>  
        </center>  
    </body>  
</html>                    

輸出:
之前單擊按鈕:

單擊按鈕後:

支持的瀏覽器:DOM borderLeft屬性支持的瀏覽器如下:

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


相關用法


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