JSFiddle - React, Tailwind, and code Playground
by doforumda
HTML
<div class="container">
<div class="div"></div>
<div class="div"></div>
<div class="div"></div>
</div>
CSS
.container {
position: relative;
width: 405px;
height: 500px;
background: red;
margin: 0 auto;
overflow: hidden;
}
.div {
width: 200px;
height: 200px;
background: blue;
float: left;
border: 1px solid red;
}