JSFiddle - React, Tailwind, and code Playground

by tea4two

HTML

<ul>
  <li>dummy</li>
  <li>dummy</li>
  <li>dummy</li>
  <li>dummy</li>
  <li>dummy</li>
</ul>

CSS

ul li:nth-child(2) {
  background-color: yellow;
}

ul li:first-child {
  background-color: tomato;
}

ul li:last-child {
  background-color: purple;
}