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


CSS margin-bottom屬性用法及代碼示例


CSS margin-bottom屬性用於指定要在元素底部使用的邊距量。可以按長度或百分比設置邊距。

用法:

margin-bottom:<length> | <percentage> | auto

屬性值

  • Length:此值指定具有固定值的邊距長度。該值可以為正,負或零。

    例:



    <!DOCTYPE html> 
    <html> 
    <head> 
        <title>CSS margin-bottom</title> 
        <style> 
            div{ 
                background-color:lightgreen; 
            } 
        </style> 
    </head> 
    <body> 
        <h1 style="color:green">GeeksforGeeks</h1> 
          
        <!-- margin-bottom for below div  
            is set to 50px -->
        <div style="margin-bottom:50px">Line One</div> 
          
        <!-- margin-bottom for below div  
            is set to 0px -->
        <div style="margin-bottom:0px">Line Two</div> 
          
        <div>Line Three</div> 
    </body> 
    </html>                    

    輸出

  • Percentage:此值指定相對於包含元素的寬度的百分比裕量。

    例:

    <!DOCTYPE html> 
    <html> 
    <head> 
        <title>CSS margin-bottom</title> 
        <style> 
            h1 { 
                color:green; 
            } 
              
            .larger { 
                width:300px; 
                background-color:white; 
            } 
              
            .smaller { 
                width:100px; 
                background-color:white; 
            } 
              
            div{ 
                background-color:lightgreen; 
            } 
        </style> 
    </head> 
    <body> 
        <h1>GeeksforGeeks</h1> 
          
        <!-- margin-bottom is set to 10% with width of  
            containing box set to 300px -->
        <div class="larger"> 
            <div style="margin-bottom:10%";>Line One</div> 
            <div>Line Two</div> 
        </div> 
          
        <!-- margin-bottom is set to 10% with width of  
            containing box set to 100px -->
        <div class="smaller"> 
            <div style="margin-bottom:10%;">Line One</div> 
            <div>Line Two</div> 
        </div> 
    </body> 
    </html>                    

    輸出

  • auto:如果此屬性的值設置為“auto”,則瀏覽器將自動為邊距大小計算一個合適的值。

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

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

相關用法


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