JSFiddle - React, Tailwind, and code Playground
HTML
<div>Hallo</div>
CSS
div {
background-color:#CCC;
width:100px;
height:100px;
position:relative;
transition: top .5s;
}
html:hover div {
top:100px;
}
<div>Hallo</div>
div {
background-color:#CCC;
width:100px;
height:100px;
position:relative;
transition: top .5s;
}
html:hover div {
top:100px;
}