The property allows you to set the color of the element's left border.
border-left-color: color | transparent
Example:
border-left-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-left-style: solid;
border-left-width: 3px;
border-left-color: red;
margin: 20px;
padding: 10px;
}