Hide cursor in Chrome (and IE)
Posted
by Chris
on Stack Overflow
See other posts from Stack Overflow
or by Chris
Published on 2010-04-14T08:55:52Z
Indexed on
2010/04/14
9:13 UTC
Read the original article
Hit count: 691
I have the following CSS that hides the mouse cursor for anything on the web page. It works perfectly in FireFox but in IE and and Chrome it doesn't work.
html {
cursor: none;
}
In Chrome I always see the mouse pointer. In IE however I see whatever cursor was last 'active' when it entered the screen. Presumably it's keeping the last selection instead of removing it.
© Stack Overflow or respective owner