This property controls the color of the left border of an element's rendering box. If no border-color is specified for an element's border, the value of the 'color' property is used instead.
Â
div { border-left-color: green }Â <div style="border-left-color: #008000">this is green</div> |
Â
Value | Description |
---|---|
inherit | Explicitly sets the value of this property to that of the parent. |
transparent | The border is transparent (with any accompanying 'border-width' thickness) - eg: elements below it shine through. |
[color] | Sets the border to the indicated color value. |
Â