JSFiddle - React, Tailwind, and code Playground
HTML
<div>
<a href="#"><span>I will tilt</span></a>
</div>
CSS
body {
font-family: Calibri;
font-size: 20px;
padding: 10px;
}
a {
display: inline-block;
transition: .3s;
text-decoration:none;
}
a:hover {
transform: rotate(15deg);
color:green;
}