JSFiddle - React, Tailwind, and code Playground

by Jim_Toth

HTML

<ul>
  <li>test 1</li>
    <li class="foo"><ul>
        <li>test 2</li>
        <li>test 3</li>
   </ul></li>
  <li>test 1</li>
</ul>

CSS

.foo{
  color: red;
}