JSFiddle - React, Tailwind, and code Playground
HTML
<div id='box'>
<div class='item'></div>
<div class='item'></div>
<div class='item'></div>
<div class='item'></div>
</div>
CSS
#box {
display: flex;
width: 100px;
margin: 0 0;
}
.item {
background: gray;
width: 50px;
height: 50px;
margin: 0 10px;
flex: none;
}