The border-bottom-color property changes the color of the bottom border.
Example
You can try to run the following code to implement the border-bottom-color property:
<html> <head> <style> p.demo { border:3px solid; border-bottom-color:#FF0000; } </style> </head> <body> <p class = "demo"> Example showing border top color property </p> </body> </html>