Open In App

HTML | DOM Style paddingBottom Property

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

Syntax:



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

Return Values: It returns a String, that represents the bottom padding of an element

Property Values :



Below program illustrates the Style paddingBottom property method: 

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




<!DOCTYPE html>
<html>
<head>
  <title>Style paddingBottom 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 paddingBottom</h2>
   
<p>For setting the bottom padding,
    double click the "Apply Bottom Padding" button: </p>
 
  <br>
  <button ondblclick="padding()">Apply Bottom Padding</button>
  <div id="MyElement">
    Geeksforgeeks is a portal for geeks.
  </div>
  <script>
    function padding() {
      document.getElementById("MyElement")
        .style.paddingBottom = "100px";
    }
  </script>
</body>
</html>

Output:

Supported Browsers: THe browser supported by HTML | DOM Style paddingBottom Property are listed below:


Article Tags :