JSFiddle - React, Tailwind, and code Playground

by secretgspot

HTML

<div class="element"></div>

CSS

.element {
  width: 100px;
  background: red;
    
  height: 100px;
  -webkit-transition: height 2s linear;
}

.element:hover {
  height: 200px;
}