JSFiddle - React, Tailwind, and code Playground

by khamer

HTML

<div class="box">hello</div>

CSS

.box {
  width: 300px;
  height: 300px;
  background: orangered;
  transform: matrix(0.92810973,-0.37230677,0.73147298,0.68187042,0,0) rotate(0deg);
  transition: transform 5s;
  margin: 5vh 20vw;
}

.box:hover {
  transform: matrix(0.92810973,-0.37230677,0.73147298,0.68187042,0,0) rotate(360deg);
}