JSFiddle - React, Tailwind, and code Playground

by Alex Alex

HTML

<div></div>

CSS

@-webkit-keyframes move {
    from {
        left: 0;
    }
    
    to {
        left: 2000px;
    }
}

div {
    background:red;
    width: 10px;
    height: 10px;
    position:absolute;
    left: 0;
    top: 10px;
    -webkit-animation: move 4s linear;
}