JSFiddle - React, Tailwind, and code Playground
by angstrey
HTML
<div class="container">
<div class="left skin">
<p>The left column</p>
<p>The left column</p>
<p>The left column</p>
</div>
<div class="right skin">
<p>The right column</p>
<p>The right column</p>
<p>The right column</p>
</div>
</div>
CSS
.container
{
border: 1px solid #000;
overflow: hidden;
width: 100%;
}
.left {
width: 45%;
float: left;
}
.right {
width: 45%;
float: right;
}
.skin {
background: #00f;
color: #fff;
}