You are here : cssCSS 3border-left-color

border-left-color - CSS 3

The border-left-color property sets the color of an element's left border.Note: Always declare the border-style property before the border-left-color
property. An element must have borders before you can change the color.


Syntax

border-left-color: color|transparent|initial|inherit;


Example

p 
	{
	   
	border-style: solid;
	   
	border-left-color: #ff0000
	}


Output / Return Value


Limitations


Alternatives / See Also


Reference