JSFiddle - React, Tailwind, and code Playground
by booktu8
HTML
<ul class="obj">
<li>111</li>
<li>2222</li>
<li>333</li>
<li>444</li>
<li>555nth</li>
</ul>
CSS
.obj{
width:200px;
height:200px;
border:1px solid #ccc;
}
li:nth-child(2){
color:red;
}