JSFiddle - React, Tailwind, and code Playground
by businessintelligences4h
HTML
<div class="parent">
<div class="left">
Blah left
</div>
<div class="right">
Blah right
</div>
</div>
CSS
html, body {
height: 100%;
width: 100%;
font-size: 13px;
}
.parent {
position:absolute;
height: 40%;
background-color: grey;
font-size: 1.6em;
display:table-cell;
vertical-align:middle;
}
.left {
margin-left: 2%;
float: left;
background-color: yellow;
}
.right {
margin-right: 2%;
float: right;
background-color: red;
}