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:
- % : 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
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
14 Jul, 2022
Like Article
Save Article