Changing the Color of List Style Circle with CSS
A brief tutorial on changing the list-style circle color with CSS. A simple CSS trick.
In order to change the list-style circle we can do the following: <style> ul li{ list-style:circle; color:red; } ul li span{ color:green; } </style> <ul> <li><span>Some Text</span></li> <li><span>Some Text</span></li> </ul>