JSFiddle - React, Tailwind, and code Playground
HTML
<div class="box">
<div class="content">TEST</div>
</div>
CSS
.box {
height: 170px;
padding-bottom: 15px;
width: 50%;
}
.content {
background-color: #e3e4e6;
height: 100%;
text-align: center;
}
.content:hover {
height: 110%;
}