CSS border-bottom-color property

CSS border-bottom-color property

Description

Sets the color of the element’s bottom border; defaults to the element’s color.

Possible values

  • color − Any valid color value.

Applies to

All HTML elements.

DOM Syntax

object.style.borderBottomColor = "red"; 

Example

Here is an example showing the effect of this property –


<html> 
<head> 
<style type = "text/css"> 
p.example1 { 
border:1px solid; 
border-bottom-color:#009900; /* Green */ 
border-top-color:#FF0000; /* Red */ 
border-left-color:#330000; /* Black */ 
border-right-color:#0000CC; /* Blue */ 
} 
</style> 
</head> 

<body> 
<p class = "example1"> 
This example is showing bottom border in green color. 
</p> 
</body> 
</html> 

This will produce the following:

CSS border-bottom-color property

Leave a Reply

Your email address will not be published. Required fields are marked *