JSFiddle - React, Tailwind, and code Playground
HTML
<ul>
<span> hello</span>
<li>List 1</li>
<li>List 2</li>
<li>List 3</li>
</ul>
CSS
ul li{
color:red;
}
ul li:first-child{
color:green;
}
<ul>
<span> hello</span>
<li>List 1</li>
<li>List 2</li>
<li>List 3</li>
</ul>
ul li{
color:red;
}
ul li:first-child{
color:green;
}