JSFiddle - React, Tailwind, and code Playground
by Jagi
HTML
<div class="container">
<div class="row">Top</div>
<div class="row">
<div class="item">Left</div>
<div class="item">Center</div>
<div class="item">Right</div>
</div>
<div class="row">Bottop</div>
</div>
CSS
.container {
display: -webkit-flex;
-webkit-flex-direction: column;
-webkit-justify-content: center;
-webkit-align-items: center;
width: 300px; height: 300px; background-color: red;
}
.row {
background-color: yellow;
}
.item {
background-color: orange;
}