JSFiddle - React, Tailwind, and code Playground

HTML

<ul>
    <li class="special">I'm Special!</li>
    <li>I'm not!</li>
    <li>I'm not!</li>
    <li>I'm not!</li>
    <li>I'm not!</li>    
    <li>I'm not!</li>
    <li>I'm not!</li>
    <li>I'm not!</li>
    <li>I'm not!</li>  
    <li>I'm not!</li>
    <li>I'm not!</li>
    <li>I'm not!</li>
    <li>I'm not!</li>      
</ul>

CSS

li:nth-child(3n-2){
    color: red;
}