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
List with a blue left border using CSS
To add a blue left border to a list in CSS, you can try to run the following code −
Example
<!DOCTYPE html>
<html>
<head>
<style>
ul {
border-left: 3px solid blue;
background-color: #gray;
}
</style>
</head>
<body>
<p>Countries</p>
<ul>
<li>India</li>
<li>US</li>
<li>Australia</li>
</ul>
</body>
</html>
Output

Advertisements
