JSFiddle - React, Tailwind, and code Playground

HTML

<div id="content">
    <div></div><!--
    --><div></div><!--
    --><div></div>
</div>

CSS

#content {
    background-color : blue;
    width : 80%;
    padding : 5px;
    line-height : 50px;
    height : 50px;
    text-align : center;
}

div div {
    background-color : red;
    width : 33%;
    height : 50px;
    display : inline-block;
}

div div + div {
    background-color : green;
}

div div + div + div {
    background-color : orange;
}