Can you rotate the cursor in CSS?

1 · CSS-Tricks · Aug. 28, 2019, 3:15 p.m.
Kinda! There is no simple or standard way to do it, but it's possible. You can change the cursor to different built-in native versions with CSS with the cursor property, but that doesn't help much here. You can also use that property to set a static image as the cursor. But again that doesn't help much because you can't rotate it once it's there. The trick is to totally hide the cursor with cursor: none; and replace it with … Read article The post Can you rotate the cursor in CSS? appeared firs...