I wanna be able to change colors of only the items of the list that has a number in it to blue.
I basically only want to change the list the color of my first list ( the ol li ) meaning the list that start with a number in it.
ol li {
color: blue;
}
<ol>
<li>League 1<br>
<ul type="circle">
<li>Buts</li>
<li>Buts top
<ul type="a">
<li>...</li>
<li></li>
</ul>
</li>
<li>Stats</li>
</ul>
</li>
<li>League 2</li>
<li>Coupe</li>
</ol>
I tried this but it didnt work, all the lists changed color to blue.