JSFiddle - React, Tailwind, and code Playground

HTML

<body>
<div style="float: left; width: 200px; height: 200px; border: 1px solid red;">
floated left div
</div>
<div style="margin-left: 20px; border: 1px solid blue; float: left">
    non floated right div containing floated divs inside<br />
    <div style="float: left; border: 1px solid green;">1st float</div>
	<div style="float: left; border: 1px solid green;">2nd float</div>
	<div style="float: left; border: 1px solid green;">3rd float</div>
	<br style="clear: left;" />
	<div style="float: left; border: 1px solid green;">1st float</div>
	<div style="float: left; border: 1px solid green;">2nd float</div>
	<div style="float: left; border: 1px solid green;">3rd float</div>
	<br style="clear: left;" />
	<div style="float: left; border: 1px solid green;">1st float</div>
    <div style="float: left; border: 1px solid green;">2nd float</div>
    <div style="float: left; border: 1px solid green;">3rd float</div>
    <br style="clear: left;" />
</div>
    <div style="clear: left"></div>
</body>