

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- 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-top-color property in CSS
The border-top-color property changes the color of the top border.
Example
You can try to run the following code to implement the border-top-color property:
<html> <head> <style> p.demo { border:3px solid; border-top-color:#FF0000; } </style> </head> <body> <p class = "demo"> Asia is a continent. </p> </body> </html>
- Related Questions & Answers
- Usage of border-color property in CSS
- Usage of border-top-style property in CSS
- Usage of border-top-width property in CSS
- Animate CSS border-top-color property
- Usage of border-right-color property in CSS
- Usage of border-bottom-color property in CSS
- Usage of border-left-color property in CSS
- Usage of border property with CSS
- Usage of CSS border-collapse property
- Usage of CSS border-spacing property
- Usage of color property in CSS
- Usage of border-style property in CSS
- Usage of border-width property in CSS
- Animate CSS border-top property
- Change the color of top border with CSS
Advertisements