JSFiddle - React, Tailwind, and code Playground

by Patrick Ludewig

HTML

<div class="container">
  <div class="item"><div></div></div>
  <div class="item"><div></div></div>
  <div class="item"><div></div></div>
  <div class="item"><div></div></div>
</div>

CSS

.container {
  display: flex;
background: blue;
justify-content: flex-start;
height: 400px;
} 
.item {
  background: red;
  min-height:200px;
  height:100%;
  width: 500px;
  max-width: 300px;
margin-right: 10px;
flex-grow:0;
}
.item div {

}