JSFiddle - React, Tailwind, and code Playground

HTML

<div style="background: #ccc;">
    <div style="float:left;">1st float</div>
    <div style="float:left;">2nd float</div>
    <div style="clear:both;"></div>
</div>

<div style="background: #fcc; margin-top: 100px;">
    <p>Only this pink block has the 100px top margin</p>
    <p>There should be no vertical space above the grey block with floats</p>
</div>