JSFiddle - React, Tailwind, and code Playground

by Matt Reynolds

HTML

<ul class='categories'>
   <li class='skip_class'>test</li>
   <li>test</li>
   <li>test</li>
</ul>

CSS

.categories li:nth-child(1){
    color: blue;
}

.categories li:nth-child(2) {
    color: red;
}