
- Javascript Basics Tutorial
- Javascript - Home
- Javascript - Overview
- Javascript - Syntax
- Javascript - Enabling
- Javascript - Placement
- Javascript - Variables
- Javascript - Operators
- Javascript - If...Else
- Javascript - Switch Case
- Javascript - While Loop
- Javascript - For Loop
- Javascript - For...in
- Javascript - Loop Control
- Javascript - Functions
- Javascript - Events
- Javascript - Cookies
- Javascript - Page Redirect
- Javascript - Dialog Boxes
- Javascript - Void Keyword
- Javascript - Page Printing
- JavaScript Objects
- Javascript - Objects
- Javascript - Number
- Javascript - Boolean
- Javascript - Strings
- Javascript - Arrays
- Javascript - Date
- Javascript - Math
- Javascript - RegExp
- Javascript - HTML DOM
- JavaScript Advanced
- Javascript - Error Handling
- Javascript - Validations
- Javascript - Animation
- Javascript - Multimedia
- Javascript - Debugging
- Javascript - Image Map
- Javascript - Browsers
- JavaScript Useful Resources
- Javascript - Questions And Answers
- Javascript - Quick Guide
- Javascript - Functions
- Javascript - Resources
Change the color of the bottom border with CSS
The border-bottom-color changes the color of the bottom border. You can try to run the following code to implement the border-bottom-color property:
Example
<html> <head> <style> p.demo { border:4px solid; border-bottom-color:#FF0000; } </style> </head> <body> <p class = "demo"> Example showing border top color property </p> </body> </html>
- Related Articles
- Change the style of bottom border with CSS
- Change the width of the bottom border with CSS
- Change the color of right border with CSS
- Change the color of top border with CSS
- Change the color of the left border with CSS
- Usage of border-bottom-color property in CSS
- Perform Animation on CSS border-bottom-color property
- Set the color of the border with CSS
- How to define the border bottom color is animatable in CSS?
- Change the style of top border with CSS
- Change the style of left border with CSS
- Change the style of the right border with CSS
- Change the Color of Active Links with CSS
- Set bottom-right corner border with CSS
- Set bottom-left corner border with CSS

Advertisements