How to make a link, gloved mouse on hover

Possible duplicate:
Make a mouse pointer a hand while hovering over an <li> element?

I have an input form button, when you hover over it, the mouse pointer does not change orientation. How can I specify a link to show a gloved finger pointer?

+6
css
source share
4 answers
cursor: pointer; 
+15
source share

I found this interesting mouse care site for you. Scroll down to the W3C pointer.

cursor: pointer;

You can hover over the ones you like and indicate which browsers it works with.

+6
source share

this is another small example

 <style type="text/css"> a.clickable{ cursor: pointer; cursor: hand; } </style> <a href="#" class="clickable">Link</a> 
+4
source share

If the link is an anchor tag, it should run by default. You can use CSS to force it, and then it doesn't matter which html tag it is.

 <a href="/Blah.htm" style="cursor: hand;">Blah</a> 

(See comments below for important information)

-one
source share

All Articles