JSFiddle - React, Tailwind, and code Playground
HTML
<ol class="list">
<li><a href="">first</a></li>
<li><a href="">second</a></li>
<li><a href="">third</a></li>
</ol>
CSS
.list li:first-of-type {
background-color: gray;
}
<ol class="list">
<li><a href="">first</a></li>
<li><a href="">second</a></li>
<li><a href="">third</a></li>
</ol>
.list li:first-of-type {
background-color: gray;
}