I have a button that I want to rotate when the mouse hovers over it. However, while the spinning works when the mouse enters, it also spins when the mouse leaves. Here is what I
Try this snippet
button:hover { transition: transform 1.2s linear; transform: rotate(360deg); }
X