JSFiddle - React, Tailwind, and code Playground

by Manju06

HTML

<div class="MainDiv">
<div class="first"></div>
<div class="first"></div>
<div class="first"></div>
<div class="first"></div>
<div class="first"></div>
<div class="first"></div>
<div class="first"></div>
<div class="first"></div>
</div>

CSS

.MainDiv{
  border:1px solid red; 
  display:flex;
  flex-wrap:wrap;
}

.first{
  border:1px solid black;
  height:100px;
  width:100px;
  background-color:gray;
  margin:5px;
}