JSFiddle - React, Tailwind, and code Playground

by Pranav C

HTML

<div class="A">
  <div>
   I am <span class="B">foo</span>.
  </div>
  <div>
   I like <span class="B">bars</span>.
  </div>
  <div>
   Actually, call me <span class="B">FOOBAR</span>.
  </div>
</div>

CSS

.A div:last-of-type .B { color: red; }