JSFiddle - React, Tailwind, and code Playground
HTML
<ul>
<li>Eins</li>
<h1>Ich gehöre hier nicht hin</h1>
<li>Zwei</li>
<li>Drei</li>
</ul>
CSS
ul :nth-child(2) { background-color:red;}
<ul>
<li>Eins</li>
<h1>Ich gehöre hier nicht hin</h1>
<li>Zwei</li>
<li>Drei</li>
</ul>
ul :nth-child(2) { background-color:red;}