JSFiddle - React, Tailwind, and code Playground

by ken tsai

HTML

<div class="_red">
</div>

CSS

._red{
    background-color:#f00;
    display:block;
    width:100px;
    height:100px;
       
    }
    
    ._red:hover{
      -webkit-animation: rotation 2s infinite linear;
    }
@-webkit-keyframes rotation {
    from {-webkit-transform: rotate(0deg);}
    to   {-webkit-transform: rotate(359deg);}
}