You are here : cssCSS 3border-width

border-width - CSS 3

The border-width property sets the width of an element's four borders. This property can 
have from one to four values.Examples:Note: Always declare the border-style property before the border-width
property. An element must have borders before you can set the width.


Syntax

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


Example

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


Output / Return Value


Limitations


Alternatives / See Also


Reference