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.

link|improve this question

Why would you want to do such a thing? – graphicdivine Apr 14 '10 at 8:59
Because I have a customer facing screen that has no human interaction. When the box starts up it automatically fires up the web browser but the cursor automatically starts in the center of the screen which masks part of the web page. So it needs to be hidden. – Chris Apr 14 '10 at 9:03
You could alternatively use another browser for your display. Hitting F11 on most browsers will make them fullscreen. – Kyle Sevenoaks Apr 14 '10 at 9:15
It is already run in Kiosk mode. I have no control over the browser used. – Chris Apr 14 '10 at 9:39
I guess they added this feature to Chrome. using "cursor: none;" works perfectly in Chrome. – trusktr Oct 8 '11 at 7:27
show 1 more comment
feedback

5 Answers

up vote 9 down vote accepted

This property cursor:none; isn't part of the standard

See here w3c cursor CSS properties.

You might want to look into hiding it with Javascript or JQuery.

Also, look at blank cursor files here.

And one last link to an ajax solution.

Chrome has had this issue since it was built, there have been reports sent to the people at Chromium, and I assume they are working on it.

Also, don't trust that anything would work in IE. Ever. :P

link|improve this answer
Thanks the .cur file worked perfectly – Chris Apr 14 '10 at 9:40
2  
+1 for "Also, don't trust that anything would work in IE. Ever. :P" – Wayne Werner Mar 7 '11 at 14:51
another +1 for "don't trust that anything would work in IE. Ever." – Kasapo Feb 22 at 23:06
feedback

I had the same problem in these days and found a good solution to hide the pointer in Google Chrome.

This is the W3C definition of url property:

A comma separated of URLs to custom cursors. Note: Always specify a generic cursor at the end of the list, in case none of the URL-defined cursors can be used

So, you can define a url to not completely transparent image, followed by the default pointer:

cursor: url(img/almost_transparent.png), default;

If you choose a totally transparent png, Chrome will display a black rectangle instead, but if you choose a png with at least 1px not transparent it will work, and nobody will notice the pointer.

link|improve this answer
This actually worked for me and was 100% correct. We needed it transparent because we had a resize image as the new cursor at certain locations. – Craig Feb 4 '11 at 0:00
+1 for chrome solution – spirytus May 31 '11 at 5:40
Just to let you know Chrome supports "cursor: none;" and IE supports fully transparent cursors. You can use browser specific stylesheets. ;) – trusktr Oct 8 '11 at 7:26
Thank you for the comment. At the time of my answer Chrome didn't support cursor:none – alexmeia Oct 10 '11 at 11:07
feedback

Since cursor can be given a url to use, could you use a url to a blank image?

link|improve this answer
Doesn't seem to work with an image. I tried pointing it to a 16x16 .png file I had (which was visible) just to see if I could change it, it didn't seem to work though. Maybe .cur files only? – Chris Apr 14 '10 at 9:09
feedback

According to this answer to an similar question, you need to set the height of your document to 100%, otherwise the page will still show the default cursor.

Anyway, it's still bad practise to hide the cursor from the user. You don't want to confuse the user into thinking their mouse device stopped working once they enter your page. Not sure why you would want to hide the cursor, but there are always more user-friendly solutions to what you are trying to achieve here. For instance, if you want to prevent the user from clicking on something, you could prevent the cursor to turning into a hand (* { cursor: pointer; }). If it's some Flash performance issue you are trying to solve, then hiding the cursor will not work, because the browser will still detect mouse movements.

link|improve this answer
I need to hide the cursor as this webpage is being used as a non-interactive display. No one will ever nagivate or use the web page it is simply being used as a pretty screen to show information to shoppers in a store. – Chris Apr 14 '10 at 9:33
Oh and I tried setting height to 100% but it didnt work... – Chris Apr 14 '10 at 9:35
In your case, leave the mouse cursor as it is. If there is not visible feedback in your page, then the user will focus on the information. Hiding the cursor lets the user focus on the disappearing cursos instead of the page, and you don't want that, right? ;-) – Prutswonder Apr 14 '10 at 9:48
1  
Our client wants it removed, so I'm removing it lol :) – Chris Apr 14 '10 at 22:44
@Prutswonder -- there are a lot of reasons why you might want to hide the cursor. One example: a game, where you will draw a custom cursor or provide the user with some other feedback. Another example: a touchscreen kiosk in a store, where the user touches the screen with their finger. – eeeeaaii May 9 '11 at 3:52
show 2 more comments
feedback

Use a hidden applet with the java.awt.robot class to move the cursor off the sreen. Say the very lower left corner.

link|improve this answer
4  
Wow... I can't think of a harder and more complicated way to accomplish such a simple task. – maisteri May 28 '10 at 17:38
I +1 this. It's not a simple task. cursor:none; does "work" in Chrome, but if you click the left mouse button the cursor reappears. If you try and drag, the cursor reappears. If you are able to do something like open-and-close the inspector, the cursor reappears. There are lots of ways to get it back. This solution is the kind of thing that provides permanent cursor removal, should your application require it. – Charlie S Oct 27 '11 at 0:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.