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


CSS border-bottom-width用法及代碼示例


CSS中的border-bottom-width屬性用於將特定寬度設置為元素的底部邊框。在使用border-bottom-width屬性之前,將border-bottom-style屬性或border-style屬性用作元素。

用法:

border-bottom-width:length|thin|medium|thick|initial|inherit;

屬性值:下麵列出了border-bottom-width屬性值:


  • thin:用於設置底部的細邊框。
  • medium:用於設置中等大小的底部邊框。它是默認值。
  • thick:用於設置粗底邊框。
  • length:用於設置邊框的寬度。它不取負值。

例:

<!DOCTYPE html> 
<html> 
    <head> 
        <title> 
            border-bottom-width property 
        </title> 
          
        <style> 
            #thin { 
                border-color:green; 
                border-bottom-style:solid; 
                border-bottom-width:thin; 
            } 
            #medium { 
                border-color:green; 
                border-bottom-style:solid; 
                border-bottom-width:medium; 
            } 
            #thick { 
                border-color:green; 
                border-bottom-style:solid; 
                border-bottom-width:thick; 
            } 
            #length { 
                border-color:green; 
                border-bottom-style:solid; 
                border-bottom-width:20px; 
            } 
        </style> 
    </head> 
      
    <body style = "text-align:center"> 
      
        <h1 style = "color:green">GeeksforGeeks</h1> 
      
        <h3>border-bottom-width property</h3> 
          
        <div id="thin"> 
            border-bottom-width:thin; 
        </div><br><br> 
          
        <div id="medium"> 
            border-bottom-width:medium; 
        </div><br><br> 
          
        <div id="thick"> 
            border-bottom-width:thick; 
        </div><br><br> 
          
        <div id="length"> 
            border-bottom-width:length; 
        </div> 
    </body> 
</html>                                

輸出:

支持的瀏覽器:下麵列出了border-bottom-width屬性支持的瀏覽器:

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


相關用法


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