JSFiddle - React, Tailwind, and code Playground
by valk
HTML
<div class="container">
<div class="right"></div>
<div class="left"></div>
</div>
CSS
.container {
width:600px;
height:200px;
border:1px solid;
}
.left {
width:auto;
height:200px;
background:red;
}
.right {
height:200px;
width:300px;
background:blue;
float:left;
}