Site icon DW Faisalabad

CSS padding Property

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.


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:

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 propertiesRead 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

Exit mobile version