JSFiddle - React, Tailwind, and code Playground

by Manoj Salvi

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;
    margin-top:25px;
}

.content:hover {
  height: 110%;
  margin-top:0;
}