Set the padding for all four sides of a <p> element to 35 pixels:
p {
padding: 35px;
}
More “Try it Yourself” examples below.
Definition and Usage
An element’s padding is the space between its content and its border.
The padding property is a shorthand property for the padding-top, padding-right, padding-bottom, and padding-left properties.
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:
- padding:10px 5px 15px 20px;
- top padding is 10px
- right padding is 5px
- bottom padding is 15px
- left padding is 20px
If the padding property has three values:
- padding:10px 5px 15px;
- top padding is 10px
- right and left padding are 5px
- bottom padding is 15px
If the padding property has two values:
- padding:10px 5px;
- top and bottom padding are 10px
- right and left padding are 5px
If the padding property has one value:
- padding:10px;
- all four paddings are 10px
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 |
CSS Syntax
padding: length|initial|inherit;
Property Values
| Value | Description |
|---|---|
| length | Specifies the padding in px, pt, cm, etc. Default value is 0. |
| % | Specifies the padding in percent of the width of the containing element |
| initial | Sets this property to its default value. Read about initial |
| inherit | Inherits this property from its parent element. Read about inherit |
