JSFiddle - React, Tailwind, and code Playground
HTML
<div id="spin"></div>
CSS
#spin{
width:200px;
height:200px;
background-color:Green;
-webkit-animation: myanimation 10s;
animation: myanimation 10s;
}
@-webkit-keyframes myanimation {
100% {margin-left:400px; -webkit-transform: rotate(360deg);}
}
@keyframes myanimation {
100% {margin-left:400px; transform: rotate(360deg);}
}