You are here : cssCSS 3border-bottom-width

border-bottom-width - CSS 3

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


Syntax

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


Example

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


Output / Return Value


Limitations


Alternatives / See Also


Reference