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


HTML Style borderTop用法及代碼示例


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

用法:

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

屬性值:


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

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

範例1:

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

輸出:
之前單擊按鈕:

單擊按鈕後:

範例2:

<!DOCTYPE html>  
<html>  
    <head>  
        <title>DOM Style borderTop Property</title>  
    </head>  
    <body>  
        <center>  
            <h1 style = "color:green;">  
                GeeksForGeeks  
            </h1>  
              
            <h2>DOM Style borderTop 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.borderTop  
                                            = "thick dotted green";  
                }  
            </script>  
        </center>  
    </body>  
</html>                     

輸出:
之前單擊按鈕:

單擊按鈕後:

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

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


相關用法


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