JSFiddle - React, Tailwind, and code Playground
HTML
<div class="box">
</div>
<div class="box">
</div>
CSS
.box { width:200px;
height:200px;
background:blue;}
.box:first-of-type {
background:red;
}
<div class="box">
</div>
<div class="box">
</div>
.box { width:200px;
height:200px;
background:blue;}
.box:first-of-type {
background:red;
}