CSS border-bottom-width property
Description
CSS border-bottom-width property defines the width of bottom side border of a block.
Syntax
border-bottom-width : medium | thin | thick | +ve length
Property values
mediumDefault
-
medium value represents medium sized border for the bottom side.thin≤medium≤thick.
border-bottom-width: medium;
thin
-
thin value defines thin line border for the bottom side.
border-bottom-width: thin;
thick
-
thick value defines a thick line border for the bottom side.
border-bottom-width: thick;
+ve length
-
length defines the line width of border for the bottom side. The used units might be px, in, em, pt.
border-bottom-width: 10px;
Applicable to
It applies to all elements
From web4college, the free CSS digger
#CSS digger
Was this article helpful?
If the border-bottom-style is none then the border-bottom-width is of no use i.e. represents 0px.
▾