Open In App

HTML DOM | Style paddingRight Property

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 :



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

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

Property Values:



Below program illustrates the Style paddingRight property method : 

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




<!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:

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


Article Tags :