JSFiddle - React, Tailwind, and code Playground
HTML
<div class="container">
<div class="box">Test Content<br>More content</div>
<div class="box">2</div>
<div class="box">3</div>
<div class="box">4</div>
<div class="box">5</div>
</div>
CSS
.container
{
width: 90%;
max-width: 1200px;
margin-left: auto;
margin-right: auto;
background-color: blue;
text-align:center;
overflow: hidden;
}
.box
{
display:inline-block;
*display: inline;
zoom:1;
vertical-align:top;
position: relative;
height: 100px;
width: 20%;
min-width: 200px;
margin: 5px;
background-color: red;
border: 1px solid black;
}