JSFiddle - React, Tailwind, and code Playground

HTML

<div>
    <div></div>
    <div></div>
    <div></div>
</div>

CSS

div div {
    height: 100px;
    width: 100px;
    background: red;
}
div div:nth-child(2) {
    background: blue;
}