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 {
    height: 10%;
    background-color: grey;
    font-size: 1.6em;
}

.left {
  position:absolute;
    margin-left: 2%;
    float: left;
    background-color: yellow;
    display: table-cell;
    vertical-align:middle;
}

.right {
    margin-right: 2%;
    float: right;
    background-color: red;
}