JSFiddle - React, Tailwind, and code Playground
by Baliga
HTML
<div class="container">
<div class="block">
</div>
</div>
CSS
.container{
display: flex;
align-items:center;
justify-content: center;
height: 100vh;
background-color: pink;
}
.block{
align-self:flex-start;
height: 1000px;
width:200px;
background-color: red;
}