JSFiddle - React, Tailwind, and code Playground
HTML
<div class="wrap">
<div class="A">A</div>
<div class="B">B</div>
<div class="clear"></div>
</div>
<span>Float é fácil</span>
CSS
.wrap{
width:400px;
border:1px solid green;
}
.A{
display:block;
background:red;
padding:50px 0;
width:120px;
text-align:center;
float:left;
}
.B{
display:block;
background:blue;
padding:50px 0;
width:120px;
text-align:center;
float:left;
}
.clear{
clear:both;
}