Skip to content
Related Articles
Get the best out of our app
GFG App
Open App
geeksforgeeks
Browser
Continue

Related Articles

HTML DOM | Style paddingRight Property

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

The Style paddingRight property is used for setting or returning the right 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.paddingRight
  • To set the property:
object.style.paddingRight = "%|length|initial|inherit"

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

Property Values:

  • % : It is used to define the right padding in % of the width of the parent element.
  • length : It is used to define the right 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 paddingRight property method : 

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

html




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


Output:

  • Before Clicking the button: 

  • After clicking the button: 

Supported Browsers: The browser supported by HTML DOM | Style paddingRight 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

My Personal Notes arrow_drop_up
Last Updated : 14 Jul, 2022
Like Article
Save Article
Similar Reads
Related Tutorials