Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
Usage of border-left-color property in CSS
The border-left-color property changes the color of the left border. You can try to run the following code to implement the border-left-color property:
Example
<html>
<head>
<style>
p.demo {
border:4px solid;
border-left-color:#FF0000;
}
</style>
</head>
<body>
<p class = "demo">
Example showing border left color property
</p>
</body>
</html> Advertisements
