Was it helpful?

Question

How to change bullet colors for lists with CSS?

CSSWeb DevelopmentFront End Technology

To change bullet colors for lists with CSS, the code is as follows −

Example

 Live Demo

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
   body{
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   }
   ul {
      list-style: none;
   }
   ul li{
      font-size: 20px;
      font-weight: 500;
   }
   ul li::before {
      content: "\2022";
      color: rgb(86, 18, 117);
      font-weight: bold;
      display: inline-block;
      width: 1em;
      margin-left: -1em;
}
</style>
</head>
<body>
<h1>Change Bullet Color of List Example</h1>
<ul>
<li>Camel</li>
<li>Goat</li>
<li>Giraffe</li>
<li>Lion</li>
</ul>
</body>
</html>

Output

The above code will produce the following output −

raja
Published on 12-May-2020 14:04:42
Advertisements
Was it helpful?
Not affiliated with Tutorialspoint
scroll top