JSFiddle - React, Tailwind, and code Playground
by kanelbula
HTML
<div id="rect"></div>
CSS
#rect {
width: 20px;
height: 100px;
background-color: red;
-webkit-animation: rot 2s ease-in-out 1s infinite alternate;
}
@-webkit-keyframes rot {
0% {
-webkit-transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
}
}