JSFiddle - React, Tailwind, and code Playground

by dezignas

HTML

<div class="holderbox">
    
    
    <div class="box"></div>
     <div class="box"></div>
     <div class="box"></div>
    
    <div class="box"></div>
    
    
     <div class="box"></div>
    
     <div class="box"></div>
    
    
    
</div>

CSS

.holderbox {
    
    width:400px;
    height:100px;
  border:1px solid #000;


}


.box {
    background:#000;
margin:20px;
float:left;
width:50px;
height:50px;
display:block;}