Open In App

HTML | DOM Style margin Property

The DOM Style margin Property is used to sets or returns the margin of an element.We can set the different size of margins for individual sides(top, right, bottom, left).
Margin properties can have following values: 

  1. Length in cm, px, pt, etc.
  2. Width % of the element.
  3. Margin calculated by the browser: auto.

Syntax: 



object.style.margin = "%|length|auto|initial|inherit" 
object.style.margin 

Property Values: 

Value Description
% Define the length in percentage compare to parent element.
length Define the length in length unit.
auto It is default value.
initial Define the initial default value.
inherit inherit from parent element.

Return Value: It returns a string value which represent the top, right, bottom, left margin of an element.
Example-1:Margin property set to four values 80px 40px 20px 90px that means top = 80px, 
right = 40px, bottom = 20px and left = 90px. 






<html>
 
<head>
    <title>
        HTML | DOM Style margin Property
    </title>
    <style>
        h1 {
            coor: green;
        }
         
        #GFG {
            border: 2px solid green;
        }
    </style>
</head>
 
<body>
    <center>
        <h1>
        GEEKSFORGEEKS
    </h1>
        <h2>
        DOM Style margin Property
    </h2>
        <p id="GFG">
            Margin properties
        </p>
 
 
 
        <br>
        <BUTTON ONCLICK="Geeks()">Submit</BUTTON>
        <script>
            function Geeks() {
                document.getElementById("GFG").style.margin =
                                        "80px 40px 20px 90px";
            }
        </script>
 
</body>
 
</html>                                

Output : 

Example-2: Change all four margin to a single margin margin: 25px; denotes top, right, bottom and left = 25px 




<html>
 
<head>
    <title>
        HTML | DOM Style margin Property
    </title>
    <style>
        h1 {
            coor: green;
        }
         
        #GFG {
            border: 2px solid green;
            margin: 60px 20px 90px 100px;
        }
    </style>
</head>
 
<body>
    <center>
        <h1>
        GEEKSFORGEEKS
    </h1>
        <h2>
        DOM Style margin Property
    </h2>
        <p id="GFG">
            Margin properties
        </p>
 
 
 
        <br>
        <BUTTON ONCLICK="Geeks()">Submit</BUTTON>
        <script>
            function Geeks() {
                document.getElementById("GFG").style.margin =
                                                      "25px";
            }
        </script>
 
</body>
 
</html>
                                        

Output: 

Supported Browsers: The browser supported by DOM Style margin property are listed below: 


Article Tags :