JSFiddle - React, Tailwind, and code Playground
by kinduff
HTML
<div class="items">
<div class="item"></div>
<div class="item"></div>
<div class="item"></div>
<div class="zero"></div>
</div>
CSS
.items .item {
width: 50px;
height: 50px;
background-color: gray;
border: 2px solid red;
}
.items .zero {
display: none;
width: 50px;
height: 50px;
background-color: green;
border: 2px solid red;
}
.items .zero:first-child {
display: block;
}