如何在悬停时制作带手套的手鼠标链接

时间:2010-04-29 14:18:16

标签: css

  

可能重复:
  Make mouse pointer a hand when hover over <li> element?

当您将鼠标悬停在鼠标指针上时,我有一个输入表单按钮,鼠标指针不会改变方向。如何指定链接以显示带手套的鼠标指针?

4 个答案:

答案 0 :(得分:19)

cursor: pointer;

答案 1 :(得分:7)

我找到了关于鼠标指针样式的This interesting site。向下滚动到指针W3C。

cursor: pointer;

您可以悬停以测试您喜欢的浏览器,并指出它可以使用的浏览器。

答案 2 :(得分:5)

这是另一个小例子

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

<a href="#" class="clickable">Link</a>

答案 3 :(得分:-1)

如果链接是锚标记,则默认情况下应该发生。你可以使用CSS强制它,然后它是什么html标签无关紧要。

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

(请参阅下面的评论以获取重要信息)