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