border-bottom-color property
Specifies the foreground color of the bottom border of an object.
![]() |
Syntax
border-bottom-color:
<color>
| currentColor | transparent | inherit
Property values
One of the following values:
- color
currentColor-
The computed value of the color property.
transparent-
Fully transparent. This keyword can be considered a shorthand for "transparent black" ("rgba(0,0,0,0)"), which is its computed value.
inherit-
The value of this property is inherited from this object's parent.
CSS information
| Applies To | All elements |
|---|---|
| Media | visual |
| Inherited | no |
| Initial Value | currentColor |
Standards information
- CSS Backgrounds and Borders Module Level 3, Section 4.1
Remarks
Some browsers do not recognize color names, but all browsers should recognize RGB color values and display them correctly.
Examples
This example uses border-bottom-color to set the bottom border color to a different color than the rest of the border.
<body> <div class="box"></div> <div class="rounded"></div> </body>
The CSS below sets the bottom border color for two div elements. The remaining border sides retain the color specified by the border-color property.

.box {
border-color: #BBBBBB;
border-bottom-color: blue;
border-style: solid;
}
.rounded {
border-color: #C20000;
border-bottom-color: #BBBBBB;
border-style: dashed;
border-radius: 10px;
}
See also
- CSSStyleDeclaration
- currentStyle
- defaults
- runtimeStyle
- style
- border
- border-right-color
- border-left-color
- border-bottom-color
