How to make a link have the gloved hand mouse when hovering

Possible Duplicate:
Make mouse pointer a hand when hover over <li> element?

I have an input form button when you hover your mouse over it the mouse pointer doesn't change orientation. How can I make a link specify to show the gloved mouse finger pointer?


cursor: pointer;

I found This interesting site about mouse pointer styling for you. Scroll down to pointer W3C.

cursor: pointer;

You can hover to test the ones you like and it indicates what browsers it works with.


这是另一个小例子

<style type="text/css">
   a.clickable{
       cursor: pointer;
       cursor: hand;
   }
</style>

<a href="#" class="clickable">Link</a>
链接地址: http://www.djcxy.com/p/27400.html

上一篇: 当悬停在标签上时,鼠标指针变为手

下一篇: 悬停时,如何建立链接时戴着戴手套的手形鼠标