You are here : cssCSS 3border-left

border-left - CSS 3

The border-left shorthand property sets all the left border properties in 
one declaration.The properties that can be set, are (in order): border-left-width, border-left-style, and border-left-color.It does not matter if one of the values above are missing, e.g.
	border-left:solid #ff0000; is allowed.


Syntax

border-left: border-width border-style border-color|initial|inherit;


Example

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


Output / Return Value


Limitations


Alternatives / See Also


Reference