JSFiddle - React, Tailwind, and code Playground
by hiral
HTML
<div></div>
<p>hover over the div element above, and the text goes down</p>
CSS
div {
width: 100px;
height: 100px;
background: red;
-webkit-transition: height 1s;
}
div:hover {
height: 300px;
}
p {
position:absolute;
top:100px;
}