JSFiddle - React, Tailwind, and code Playground
HTML
<div class="parent">
<div class="parent__child"></div>
<div class="parent__child"></div>
<div class="parent__child"></div>
<div class="parent__child"></div>
<div class="parent__child"></div>
</div>
CSS
* {
margin: 0;
padding: 0;
border: 0;
font-size: 0;
}
.parent {
position: absolute;
top: 50%;
left: 50%;
margin-top: -100px;
margin-left: -500px;
display: inline-flex;
justify-content: space-around;
flex-direction: row;
width: 1000px;
min-height: 200px;
border: 3px solid #1b1b1b;
background: rgba(40, 40, 20, .2);
}
.parent__child {
width: 110px;
height: 200px;
background: red;
border: 3px solid #778899;
box-sizing: border-box;
}