JSFiddle - React, Tailwind, and code Playground

by Casiano Rodriguez-Leon

HTML

<div id="container">
  
    <div class="box">1</div>
 
  <div class="box-2">2</div>
  3
</div>
4
<div class="box">5</div>
6

CSS

#container > .box {
   float: left;
   padding-bottom: 15px;
}