JSFiddle - React, Tailwind, and code Playground

by naryad

HTML

<div class="container">
    <div class="subcon">
        <div class="left">left</div>
        <div class="right">right</div>
    </div>
</div>

CSS

div.container {
    border: dotted;
    width: 300px;
    text-align: center;
    height:30px;
} 
.subcon {
    display: inline-block
}
.left{
    background: lightgreen;
    float: left;
    margin:2px;
}
.right {
    background: lightblue;
    float: left;
    margin: 2px;
}