JSFiddle - React, Tailwind, and code Playground

by Bright RYMER

HTML

<div class="foo">
   ...
    <span> ---> can be the first</span>
    <h1> ---> can be the first</h1>
    <h2> ---> can be the first</h2>
   and so on...
   ...
</div>

CSS

.foo > :first-child {
    background-color: crimson;
}