The border-left-color CSS property sets the color of the bottom border of an element. Note that in many cases the shorthand CSS properties border-color or border-left are more convenient and preferable.
InitialcurrentColor
Applies toall elements
Inheritedno
Mediavisual
Computed ValueIf the value is translucent, the computed value will be the rgba() corresponding one. If it isn’t, it will be the rgb() corresponding one. The transparent keyword maps to rgb(0,0,0).
Is a <color> CSS value describing the color of the left border.
inherit
Is a keyword denoting the color of the bottom border of the parent’s element (which may be different from the border-left-color default value)
Examples
pre {
border: solid 0.3em gold;
border-left-color: red;
}
/* this has the same result:
pre {
border: solid 0.3em;
border-color: gold gold gold red;
} */