JSFiddle - React, Tailwind, and code Playground
by poztin
HTML
<div class="container">
<div class="item">Block 1</div>
<div class="item">Block 2</div>
<div class="item">Block 3</div>
<div class="item">Block 4</div>
<div class="item">Block 5</div>
<div class="item">Block 6</div>
<div class="clear"></div>
</div>
CSS
.container {
width:100%;
background-color:salmon;
}
.item {
width:100px;
background-color:steelblue;
float:left;
}
.clear {
clear:both;
}
}