- 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
Change the color of top border with CSS
The border-top-color changes the color of top border. You can try to run the following code to implement the border-top-color property:
Example
<html> <head> <style> p.demo { border:3px solid; border-top-color:#FF0000; } </style> </head> <body> <p class = "demo"> Example showing border top color property </p> </body> </html>
- Related Articles
- Change the color of right border with CSS
- Change the style of top border with CSS
- Change the color of the bottom border with CSS
- Change the color of the left border with CSS
- Animate CSS border-top-color property
- Usage of border-top-color property in CSS
- Set the color of the border with CSS
- Animate border-color property with CSS
- How to set the color of the top border with JavaScript?
- Change the style of left border with CSS
- Change the style of bottom border with CSS
- Change the style of the right border with CSS
- Change the width of the bottom border with CSS
- Change Cursor Color with CSS caret-color
- Change the Color of Active Links with CSS

Advertisements