JSFiddle - React, Tailwind, and code Playground

HTML

<table>
    <tr><td class="top">top</td></tr>
    <tr><td class="middle">middle</td></tr>
    <tr><td class="bottom">bottom</td></tr>
</table>

CSS

table {
    height: 400px;
}
td.top {
    height: 40px;
    background: green;
}
td.middle {
    background: red;
}
td.bottom {
    height: 40px;
    background: yellow;
}