JSFiddle - React, Tailwind, and code Playground

by cgough

HTML

<div class="wrapper">
  <div>
    We
  </div>
  <div>
    Are
  </div>
  <div>
    All
  </div>
  <div>
    Content
  </div>
</div>

CSS

.wrapper div:nth-child(1n+2) {
  color: red;
}

.wrapper div:first-child {
  color: pink;
}