JSFiddle - React, Tailwind, and code Playground
by Moien Tajik
HTML
<div id="ta-ava-wrapper">
<div>first child</div>
<div>test</div>
<ul>last child</ul>
</div>
CSS
#ta-ava-wrapper > :first-child {
background-color: yellow;
}
#ta-ava-wrapper > :last-child {
background-color: lightgreen;
}