JSFiddle - React, Tailwind, and code Playground
by levchenko_d
HTML
<div class="t">
<div class="c"></div>
<div class="c"></div>
</div>
CSS
.t{display: table;width: 500px;}
.c{
display: table-cell;
width: 50%;
background: silver;
}
.c:first-of-type{
height: 300px;
background: blue;
}
.c:last-of-type{
height: 500px;
}