JSFiddle - React, Tailwind, and code Playground
by Van Hai Le
HTML
<div class="box">
<p>Helo</p>
<p>Tell me wwhy</p>
</div>
CSS
.box {
height: 300px;
width: 250px;
background: skyblue;
box-sizing: border-box;
display: flex;
flex-direction: column;
}
p {
margin: 0;
margin-top: auto;
}