JSFiddle - React, Tailwind, and code Playground

by Mukul kant

HTML

<div> </div>

CSS

div{
	background:#ccc;height: 78px;width:58px;
    animation: test 2s linear infinite;
    animation-delay: 3s;
    position: absolute;
}
@keyframes test{
    from{left:100px;}
    to{left:0px;}
}