does anyone know a better way of changing the colour of a bullet point, without having to resort to the following:
<style>
ul li { color:green; }
ul li span { color:black; }
</style>
<ul>
<li><span>One .</span></li>
<li><span>Two .</span></li>
</ul>
I'm trying to avoid using the <span> element inside the <li>
<style>
ul li { color:green; }
ul li span { color:black; }
</style>
<ul>
<li><span>One .</span></li>
<li><span>Two .</span></li>
</ul>
I'm trying to avoid using the <span> element inside the <li>
Comment