JSFiddle - React, Tailwind, and code Playground
HTML
<div class="container">
<div class="row"></div>
<div class="row"></div>
<div class="row"></div>
</div>
CSS
html, body {
box-sizing: border-box;
height: 100vh;
}
body {
margin: 0;
background-color: black;
padding: 20px;
}
.container {
width: 300px;
display: flex;
flex-direction: column;
margin: -10px 0;
}
.row {
height: 100px;
background-color: deeppink;
margin: 10px 0;
}