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


HTML Style borderBottomWidth用法及代碼示例


HTML DOM中的borderBottomWidth樣式屬性用於設置或返回元素底部邊框的寬度。

用法:

  • 用於返回底部邊框的寬度。
    object.style.borderBottomWidth
  • 用於設置底部邊框的寬度。
    border-bottom-width:"medium|thin|thick|length|initial|inherit";

返回值:它返回選定元素的底部邊框寬度。


屬性值:

  • medium:它設置中等大小的底部邊框。它是默認值。
  • thin:它設置了底部的細邊框。
  • thick:它設置了較粗的底部邊框。
  • length:它設置邊框的寬度。它不取負值。
  • initial:它將borderBottomWidth屬性設置為其默認值。
  • inherit:它用於從其父元素繼承。

範例1:本示例使用borderBottomWidth屬性的粗值。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML | DOM Style borderBottomWidth Property 
    </title> 
    <style> 
        div { 
            color:green; 
            border:1px solid green; 
            text-align:center; 
        } 
    </style> 
</head> 
  
<body> 
    <div id="main"> 
        <h1>GeeksforGeeks.!</h1> 
    </div> 
    <br> 
  
    <input type="button" value="Click Me.!" onclick="geeks()" /> 
  
    <script> 
     function geeks() { 
        document.getElementById("main").style.borderBottomWidth  
                                                     = "thick"; 
        } 
    </script> 
</body> 
  
</html>

輸出:
在單擊按鈕之前:

單擊按鈕後:

範例2:本示例使用borderBottomWidth屬性的精簡值。

<!DOCTYPE html> 
<html> 
<head> 
    <title> 
        HTML | DOM Style borderBottomWidth Property 
    </title> 
    <style> 
        div { 
            color:green; 
            border:8px solid green; 
            text-align:center; 
        } 
    </style> 
</head> 
  
<body> 
    <div id = "main"> 
        <h1>GeeksforGeeks.!</h1> 
    </div> 
    <br> 
      
    <input type = "button" value = "Click Me.!" 
        onclick = "geeks()" /> 
          
    <script> 
    function geeks() { 
        document.getElementById("main").style.borderBottomWidth 
                    = "thin"; 
    } 
    </script> 
</body> 
</html>                    

輸出:
在單擊按鈕之前:

單擊按鈕後:

支持的瀏覽器:下麵列出了style borderBottomWidth屬性支持的瀏覽器:

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


相關用法


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