The property allows you to set the color of the bottom border of the element.
border-bottom-color: color | transparent
Example:
border-bottom-color: #c4005b;;
color
- the value can be in any valid CSS format.
transparent
- sets transparent color.
<div class="example">solid</div>
.example {
border: 1px solid blue;
border-bottom-style: solid;
border-bottom-width: 3px;
border-bottom-color: red;
margin: 20px;
padding: 10px;
}