JSFiddle - React, Tailwind, and code Playground

by greatCar

HTML

//float side by side divs
<div style="width: 100%; overflow: hidden;text-align:center;">
    <div style="float: left; width: 33.33%; background: #ccc">Left </div>
    <div style="float: left; background: #dcc;width: 33.33%;" > Mid </div>
    <div style="float: left; background: #dec;width: 33.33%;" > Right </div>
</div>
<div><br></div>

<div style="width: 100%; overflow: hidden;text-align:center;">
    <div style="float: left; background: #ccc">Left </div>
    <div style="float: left; background: #dcc;" > Mid </div>
    <div style="float: left; background: #dec;" > Right </div>
</div>
<div><br></div>

<div style="width: 100%; overflow: hidden;text-align:center;">
    <div style="width:100px; float: left; background: #ccc">Left </div>
    <div style="float: left;">
     <p>
     sdf
     </p>
    </div>
</div>