JSFiddle - React, Tailwind, and code Playground
by Andres Mijares
HTML
<div class="content">
<div class="left">
<p>some content</p>
</div>
<div class="right">
<p>some content</p>
</div>
</div>
<div class="content">
<div class="left">
<p>some content</p>
</div>
<div class="right">
<p>some content</p>
</div>
</div>
CSS
.content {
width: 450px;
height: auto;
margin: 0 auto;
background: red;
clear: both;
}
.left {
float: left;
height: 300px;
background: green;
width: 100px;
}
.right {
float: right;
background: yellow;
width: 100px;
}