JSFiddle - React, Tailwind, and code Playground
by anmol sandal
HTML
<div class="container">
<div class="element"></div>
<div class="element"></div>
<div class="element"></div>
</div>
CSS
.container {
display: flex;
flex-direction: row;
justify-content: space-between;
flex-wrap: wrap;
background: lightgrey;
}
.element {
margin: 8px;
width: 42px;
height: 42px;
background: black;
}