border-bottom-color

The property allows you to set the color of the bottom border of the element.

Syntax



border-bottom-color: color | transparent

Example:

border-bottom-color: #c4005b;;

color - the value can be in any valid CSS format.

transparent - sets transparent color.

Example


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

	
		
	
.example {

   border: 1px solid blue;
   border-bottom-style: solid;
   border-bottom-width: 3px;
   border-bottom-color: red;
   margin: 20px;
   padding: 10px;
	 
	 }
	
	  
	
solid