JSFiddle - React, Tailwind, and code Playground

HTML

<div class="div1"></div>
<div class="container">
   <div class="div2">123</div>
   <div class="div2">12312</div>
   <div class="div2">12312</div>
</div>

CSS

.div1{
    float:left;
    width:75px;
    height:100px;
    background-color:red;
}
.container{
padding-left:75px;
}
.div2{
    margin:auto;
    width:30px;
    background-color:blue;
    height:100px;
}