JSFiddle - React, Tailwind, and code Playground

by mrjordy

HTML

<div>asdf</div>

CSS

div {
    background-color: red;
    height: 44px;
    position: relative;
    width: 100px;
}
div:hover {
    -webkit-animation: foo 1s linear both;
       -moz-animation: foo 1s linear both;
            animation: foo 1s linear both;
}
@-webkit-keyframes foo {
    100% {

        height: 0;
        top: 44px;
    }
}
@-moz-keyframes foo {
    100% {

        height: 0;
        top: 44px;
    }
}
@keyframes foo {
    100% {

        height: 0;
        top: 44px;
    }
}