JSFiddle - React, Tailwind, and code Playground

by astex

HTML

<div class='full'>
    <div class='left'>
        hi there
    </div>
    <div class='right'>
        Hello!
    </div>
</div>

CSS

.full { margin-top: 1em; }
.full div { display: inline-block; }
.full .left { margin-right: 2em; }
.full .right{ background-color: #DDD; }