Set the padding for all four sides of a <p> element to 35 pixels:
p {
padding: 35px;
}
Try it Yourself »
More "Try it Yourself" examples below.
An element's padding is the space between its content and its border.
The padding
property is a shorthand property for:
Note: Padding creates extra space within an element, while margin creates extra space around an element.
This property can have from one to four values.
If the padding property has four values:
If the padding property has three values:
If the padding property has two values:
If the padding property has one value:
Note: Negative values are not allowed.
Default value: | 0 |
---|---|
Inherited: | no |
Animatable: | yes, see individual properties. Read about animatable Try it |
Version: | CSS1 |
JavaScript syntax: | object.style.padding="100px 20px" Try it |
The numbers in the table specify the first browser version that fully supports the property.
Property | |||||
---|---|---|---|---|---|
padding | 1.0 | 4.0 | 1.0 | 1.0 | 3.5 |
padding:
length|initial|inherit;
Value | Description | Demo |
---|---|---|
length | Specifies the padding in px, pt, cm, etc. Default value is 0. Read about length units | Demo ❯ |
% | Specifies the padding in percent of the width of the containing element | Demo ❯ |
initial | Sets this property to its default value. Read about initial | |
inherit | Inherits this property from its parent element. Read about inherit |
Set the padding for a <p> element to 35 pixels for top and bottom, and to 70 pixels for right and left:
p {
padding: 35px 70px;
}
Try it Yourself »
Set the padding for a <p> element to 35 pixels for top, 70 pixels for right and left, and to 50 pixels for bottom:
p {
padding: 35px 70px 50px;
}
Try it Yourself »
Set the padding for a <p> element to 35 pixels for top, 70 pixels for right, 50 pixels for bottom, and to 90 pixels for left:
p {
padding: 35px 70px 50px 90px;
}
Try it Yourself »
CSS tutorial: CSS Padding
CSS tutorial: CSS Box Model
HTML DOM reference: padding property
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!