JSFiddle - React, Tailwind, and code Playground
HTML
<div class="rotate"></div>
CSS
body {
padding: 25px;
}
.rotate {
width: 100px;
height: 100px;
background: #000;
-webkit-animation: animated 5s linear infinite;
}
@-webkit-keyframes animated {
to { -webkit-transform: rotateY(360deg); }
}