I am looking to change the color of only the items in a list that contain a number to blue.
Specifically, I want to target the first list (the ol li) that starts 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 attempted this approach but unfortunately, all the lists ended up changing color to blue.