JSFiddle - React, Tailwind, and code Playground

by luka kupunia

HTML

<div></div>

CSS

div {
    width: 100px;
    height: 100px;
    background: red;
    animation: a  1s;
    transform: translate(500px,0);
}
@keyframes a{
    from {
        transform: translate(0,0)
    }
    to {
        transform: translate(50%,0)
    }
}