You are here : cssCSS 3border-left-width

border-left-width - CSS 3

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


Syntax

border-left-width: medium|thin|thick|length|initial|inherit;


Example

p 
	{
	   
	border-style: solid;
	   
	border-left-width: 15px;
	}


Output / Return Value


Limitations


Alternatives / See Also


Reference