JSFiddle - React, Tailwind, and code Playground
by Minko Gechev
HTML
<div class="foo">
</div>
CSS
.foo {
width: 200px;
height: 200px;
background-color: red;
-webkit-transform: translate(0px, 0px);
-webkit-transition: -webkit-transform 1s ease-in-out;
position: absolute;
top: 0px;
left: 0px;
}
.foo:hover {
-webkit-transform: translate(150px, 250px);
}