Open In App

HTML | DOM Style paddingTop Property

The Style paddingTop property is used for setting or returning the top padding of an element. The padding property inserts the user desired space within the border of an element. 

Syntax :



object.style.paddingTop
object.style.paddingTop = "%|length|initial|inherit"

Return Values: It returns a string value, which represents the top padding of an element

Property Values :



Below program illustrates the Style paddingTop property method : 

Example: Setting the top padding of a <div> element. 




<!DOCTYPE html>
<html>
 
<head>
    <title>Style paddingTop in HTML</title>
    <style>
        #MyElement {
            border: 1px solid black;
            background-color: green;
            width: 300px;
            height: 300px;
        }
         
        h1 {
            color: green;
        }
         
        h2 {
            font-family: Impact;
        }
         
        body {
            text-align: center;
        }
    </style>
</head>
 
<body>
 
    <h1>GeeksforGeeks</h1>
    <h2>Style paddingTop</h2>
 
    <p>For setting the top padding,
      double click the "Apply Top Padding" button: </p>
    <br>
 
    <button ondblclick="padding()">Apply Top Padding</button>
 
    <div id="MyElement">
        Geeksforgeeks is a portal for geeks.
    </div>
 
    <script>
        function padding() {
            document.getElementById("MyElement")
            .style.paddingTop = "100px";
        }
    </script>
 
</body>
 
</html>

Output:

Supported Browsers: The browser supported by HTML | DOM Style paddingTop Property are listed below:


Article Tags :