JSFiddle - React, Tailwind, and code Playground

by ten1seven

HTML

<div id="wrapper">
    <div id="col1">
        <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer imperdiet pede.</p>
        <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer imperdiet pede.</p>
        <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer imperdiet pede.</p>
    </div>
    <div id="col2">
        <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer imperdiet pede.</p>
    </div>
</div>

CSS

#wrapper {
    background: #ffc;
    overflow: auto;
    width: 100%;
}
#col1 {
    background: #eec;
    float: left;
    width: 50%;
}
#col2 {
    background: #eef;
    float: right;
    width: 50%;
}