JSFiddle - React, Tailwind, and code Playground

HTML

<div class="container">
    <div class="content">Hi there</div>
</div>

CSS

.container {
    height: 1px;
    min-height: 200px;
    background-color: steelblue;
}

.content {
    height: 50%;
    background-color: tomato;
}