The padding CSS property sets the required padding space on all sides of an element. The padding area is the space between the content of the element and its border. Negative values are not allowed.
The padding property is a shorthand to avoid setting each side separately (padding-top, padding-right, padding-bottom, padding-left).
Initialthe concatenation of the initial values of its longhand properties:
padding-bottom: is itself a shorthand, its initial value is the concatenation of its own longhand properties
padding-left: is itself a shorthand, its initial value is the concatenation of its own longhand properties
padding-right: is itself a shorthand, its initial value is the concatenation of its own longhand properties
padding-top: is itself a shorthand, its initial value is the concatenation of its own longhand properties
Applies toall elements except table-row-group, table-header-group, table-footer-group, table-row, table-column-group and table-column
Inheritedno
Percentagesrefer to the width of the containing block
Mediavisual
Computed Valueas each of the properties of the shorthand:
padding-bottom: the percentage as specified or the absolute length
padding-left: the percentage as specified or the absolute length
padding-right: the percentage as specified or the absolute length
padding-top: the percentage as specified or the absolute length