JSFiddle - React, Tailwind, and code Playground
by luka kupunia
HTML
<div></div>
CSS
body {
margin: 0;
}
div {
width: 300px;
height: 300px;
background: red;
-webkit-transform: translate(0);
-moz-transform: translate(0);
animation: a 1s both;
}
@keyframes a {
100% {
-webkit-transform: translate(600px);
-moz-transform: translate(600px);
}
}