Colorare un Bullet UL - LI





https://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_bullet_color


<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
ul {
list-style: none;
}

ul li::before {
content: "\2022";
color: red;
font-weight: bold;
display: inline-block;
width: 1em;
margin-left: -1em;
}
</style>
</head>
<body>

<h2>Change Bullet Color of List Items</h2>

<ul>
<li>Adele</li>
<li>Agnes</li>
<li>Billy</li>
<li>Bob</li>
</ul>

</body>
</html>










( colorareunbulletulli.html )- by Paolo Puglisi - Modifica del 17/12/2023