border-bottom
Definition
The border-bottom property is a shorthand method for setting border-bottom-width, border-bottom-style and border-bottom-color property values. The bottom border is represented by the yellow highlighted area in the illustration below.

Example
h1 {border-bottom: thick solid red}
This is equivalent to:
h1 {border-bottom-width: thick;border-bottom-style: solid;border-bottom-color: red;}
Characteristics
Possible values
Default value
See individual properties
Applies to
Inherited
No
See also