JSFiddle - React, Tailwind, and code Playground

by esbullington

HTML

<div id="main">
</div>

CSS

#main {
  width:200px;
  height: 200px;
  background-color: red;
}

/* Standard syntax */
@keyframes mymove {
    0%   {top: 0px; background: red; width: 100px;}
    100% {top: 200px; background: yellow; width: 300px;}
}