悬停时,如何建立链接时戴着戴手套的手形鼠标
可能重复:
将鼠标指针悬停在<li>元素上方时可以使用鼠标指针?
当您将鼠标悬停在其上时,我有一个输入表单按钮,鼠标指针不会改变方向。 我怎样才能让链接指定显示戴着手套的鼠标手指指针?
cursor: pointer;
我发现这个有趣的网站关于你的鼠标指针造型。 向下滚动到指针W3C。
cursor: pointer;
您可以悬停以测试您喜欢的内容,并指出它与哪些浏览器配合使用。
这是另一个小例子
<style type="text/css">
a.clickable{
cursor: pointer;
cursor: hand;
}
</style>
<a href="#" class="clickable">Link</a>
链接地址: http://www.djcxy.com/p/27399.html
上一篇: How to make a link have the gloved hand mouse when hovering