JSFiddle - React, Tailwind, and code Playground
by hiral
HTML
<div id="container">
<div></div>
<div></div>
<div></div>
<div></div>
</div>
CSS
#container {
text-align: justify;
min-width: 200px;
}
#container div {
width: 50px;
display: inline-block;
background: red;
}
#container,#container div{
height:50px;
}
#container:after {
content:'';
width: 100%;
display: inline-block;
}