JSFiddle - React, Tailwind, and code Playground
HTML
<div class="par">
<div class="child"></div>
<div class="child"></div>
</div>
CSS
.par {
border: 5px solid #fcc;
width: 300px;
overflow: hidden;
}
.child {
border: 5px solid #f66;
width: 100px;
height: 100px;
float: left;
}