JSFiddle - React, Tailwind, and code Playground

by karin

HTML

<ul>
    <li>affected</li>
    <li>affected</li>    
    <li>
        <ul>
            <li>NOT affected</li>
            <li>NOT affected</li>
        </ul>
    </li>
</ul>

CSS

ul > li{
    color:green;
}
ul li{
    color:orange;
}