JSFiddle - React, Tailwind, and code Playground

by mirontoli

HTML

<div id="start-layout-container">
        <div id="start-layout-left">
            Test
        </div>
        <div id="start-layout-right">
            test2adasfdsf
            a
            <br>
            <br>
            2
        </div>
    </div>

CSS

#start-layout-container {
    min-width:250px;
    display:table;
    border-spacing:15px;
}
#start-layout-left {
    min-width:110px;
    background-color:blue;
   display:table-cell;
    margin: 0px 15px 0px 0px;
}
#start-layout-right {
    background-color:red;
    width:110px;
    display:table-cell;
    margin: 0px 0px 0px 0px;
}