Set the padding of a <div> element:
document.getElementById("myDiv").style.padding = "50px 10px 20px 30px";
Try it Yourself »
The padding property sets or returns the padding of an element.
This property can take from one to four values:
Both the margin property and the padding property insert space around an element. However, the difference is that margin inserts the space around the border, while padding inserts the space within the border of an element.
Property | |||||
---|---|---|---|---|---|
padding | Yes | Yes | Yes | Yes | Yes |
Return the padding property:
object.style.padding
Set the padding property:
object.style.padding
= "%|
length|initial|inherit"
Value | Description |
---|---|
% | Defines the padding in % of the width of the parent element |
length | Defines the padding in length units |
initial | Sets this property to its default value. Read about initial |
inherit | Inherits this property from its parent element. Read about inherit |
Default Value: | 0 |
---|---|
Return Value: | A String, representing the padding of an element |
CSS Version | CSS1 |
Change the padding of all four sides of a <div> element to "25px":
document.getElementById("myDiv").style.padding = "25px";
Try it Yourself »
Return the padding of a <div> element:
alert(document.getElementById("myDiv").style.padding);
Try it Yourself »
Difference between the margin property and the padding property:
function changeMargin() {
document.getElementById("myDiv").style.margin = "100px";
}
function changePadding() {
document.getElementById("myDiv2").style.padding = "100px";
}
Try it Yourself »
CSS tutorial: CSS Padding
CSS reference: padding property
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!