JSFiddle - React, Tailwind, and code Playground

by Gökhan Kurt

HTML

<div class="left"></div>
<div class="right"></div>

CSS

.left {
  height: 200px;
  width: 200px;
  background: blue;
  float: left;
}

.right {
  width: auto;
  height: 200px;
  background: red;
  overflow: hidden;
}