JSFiddle - React, Tailwind, and code Playground

by crnacura

HTML

<div class="one"></div>
<div class="two"></div>

CSS

div {
    position: absolute;
    width: 100px;
    height: 100px;
}

.one {
    top: 10px;
    left: 10px;
    background: maroon;
}

.one:hover {
    -webkit-animation: test 1s forwards;
}

.two {
    top: 50px;
    left: 50px;
    background: blue;
}

@-webkit-keyframes test {
    to { z-index: 100; }
}