JSFiddle - React, Tailwind, and code Playground

HTML

<div id="selector">
  <a>Hello</a>
  <a>bye</a>
  <a class="specific">Hi</a>
</div>

CSS

.specific { color: green; }
div a { color: red;}