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 :

  • To get the property:
object.style.paddingTop
  • To set the property:
object.style.paddingTop = "%|length|initial|inherit"

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

Property Values :

  • % : It is used to define the top padding in % of the width of the parent element.
  • length : It is used to define the top padding in length units.
  • initial : It is used to set this property to its default value.
  • inherit : It is used to inherit this property from its parent element.

Below program illustrates the Style paddingTop property method : 

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

html




<!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>w3wiki</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">
        w3wiki is a portal for Beginner.
    </div>
 
    <script>
        function padding() {
            document.getElementById("MyElement")
            .style.paddingTop = "100px";
        }
    </script>
 
</body>
 
</html>


Output:

  • Before Clicking the button: 

  • After clicking the button: 

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

  • Google Chrome 1 and above
  • Edge 12 and above
  • Internet Explorer 4 and above
  • Firefox 1 and above
  • Opera 3.5 and above
  • Apple Safari 1 and above


Contact Us