JSFiddle - React, Tailwind, and code Playground
HTML
<div>
<div class="four">4</div>
<div class="five">5</div>
</div>
CSS
div{
display:inline-block;
float:left;
color:#fff;
font-size:40px;
}
.three{
width:100px;
height:200px;
}
.four{
width:100px;
height:100px;
background:darkblue;
}
.five{
width:100px;
height:100px;
background:blue;
}