JSFiddle - React, Tailwind, and code Playground
by Bacher
HTML
<div class="con">
<div class="col">COL</div>
<div class="cont">CONTENT</div>
</div>
CSS
.con {
display: flex;
align-items: start;
}
.col {
background: red;
}
.cont {
height: 400px;
background: blue;
}