JSFiddle - React, Tailwind, and code Playground
by Ivin Raj S
HTML
<div id="container">
<div id="left"></div>
<div id="middle"></div>
<div id="right"></div>
</div>
CSS
#container {
text-align: center;
}
#left, #middle, #right {
width: 200px;
display:inline-block;
background: red;
height: 90px;
}