JSFiddle - React, Tailwind, and code Playground

by zeen

HTML

<div class="container">
<div class="box1"></div>
<div class="box2"></div>
<div style="clear:both"></div>
</div>

CSS

.box1 {
    float: left;
    width: 50px;
    height: 50px;
    background: red;
    
}
.box2 {
    float: right;
    width: 50px;
    height: 50px;
    background: green;
    
}

.container {
    background: yellow;
}