Open In App

CSS margin-bottom Property

The CSS margin-bottom property is used to specify the amount of margin to be used on the bottom of an element. The margin can be set in terms of length or percentage. 

Syntax:



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

Property values:

Example: 






<!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>                   

Output:

 

Example: 




<!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>                   

Output:

 

Supported Browsers: The browser supported by margin-bottom property are listed below:


Article Tags :