JSFiddle - React, Tailwind, and code Playground

by John Grivas

HTML

<div class="container">
    <div class="block">1</div>
    <div class="block">2</div>
    <div class="block">3</div>
    <div class="block">4</div>
</div>

CSS

.block {width: 25%; height:139px; float: left;}
div.container div:nth-of-type(2) {
	background-color: #9999ff;
    text-align:center;
}
div.container div:nth-of-type(3) {
	background-color: #9999ff;
     text-align:center;
}