- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Usage of border-bottom-color property in CSS
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>
- Related Articles
- Usage of border-color property in CSS
- Usage of border-bottom-style property in CSS
- Usage of border-bottom-width property in CSS
- Usage of border-top-color property in CSS
- Usage of border-right-color property in CSS
- Usage of border-left-color property in CSS
- Perform Animation on CSS border-bottom-color property
- Usage of color property in CSS
- Animate CSS border-bottom property
- Usage of border property with CSS
- Usage of CSS border-collapse property
- Usage of CSS border-spacing property
- Usage of border-width property in CSS
- Usage of border-style property in CSS
- Usage of margin-bottom property with CSS

Advertisements