border-bottom-width

Sets the width of the element's bottom border.

Syntax



border-bottom-width: value;



	  
	<div class="example">solid</div>


	
		
	
.example {

   border: 1px solid blue;
  
   border-bottom-width: 10px;
	 
	 }
	
	  
	
solid