JSFiddle - React, Tailwind, and code Playground

HTML

<div id="padre">
    <div id="contenedorHijos">
        <div id="hijo1" class="hijo">1</div>
        <div id="hijo2" class="hijo">2 - panel de prueba</div>
    </div>
</div>

CSS

/**/
#padre { width: 130px; overflow: hidden; }
#contenedorHijos { width: 200px; }
#hijo1 { width: 100px; height: 100px; background-color: green; float: left; }
#hijo2 { width: 100px; height: 100px; background-color: blue; float: left; }