Little Web Hut

CSS 2.1 Reference: padding-bottom Property

CSS padding-bottom Property
Syntax
selector {padding-bottom: value ;}
Usage

The padding-bottom property is used to specify the width of the bottom side padding area. See the Box Model for a description of the boxes that are generated for elements and the relative position of the padding area.

This property is specified by using a length, percentage, or keyword, according to the syntax shown above. If a percentage value is used, the value will be a percentage of the containing block's width.


CSS Example: The padding-bottom property is set using a length value.
  .tst1 {padding-bottom: 50px; background-color: orange;}
Test It HTML StyleTest It XHTML StyleTest It HTML5 Style

Keywords
  • inherit - The inherit keyword is used to specify that the value for this property should be taken from the parent element. If inherit is used with the root element, then the initial value for this property will be used.
Applies To All elements except elements with the following display types: table-row-group, table-header-group, table-footer-group, table-row, table-column-group, table-column.
Inherited No
Initial Value 0


padding-bottom Property Examples
Test It HTML StyleTest It HTML StyleTest It HTML5 StyleThe padding-bottom property is set using a length value.