是否可以删除将鼠标悬停在链接上时出现的手形光标? (或将其设置为普通指针)
我想删除当您将鼠标悬停在超链接上时出现的手形光标。
我尝试过这个 css:
a.link {
cursor: pointer;
}
和这个:
a.link {
cursor: pointer !important;
}
当我将鼠标悬停在链接上时,它仍然会变成手。
有谁知道为什么会发生这种情况,或者有什么解决方案可以使我实现这种效果?
I would like to remove the hand cursor that appears when you hover over a hyperlink.
I have tried this css:
a.link {
cursor: pointer;
}
And this:
a.link {
cursor: pointer !important;
}
And still it changes to the hand when I hover over the link.
Does anyone have any ideas as to why this happens or a solution that would enable me to achieve this effect?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
这正是
cursor:pointer;
应该做的事情。如果您希望光标保持正常,您应该使用
cursor: default
That's exactly what
cursor: pointer;
is supposed to do.If you want the cursor to remain normal, you should be using
cursor: default
使用内联样式时请使用
your content here
。请参阅此 示例
或者使用 css。请参阅此示例。
该解决方案是跨浏览器兼容的。
Using inline styling use
<a href="your link here" style="cursor:default">your content here</a>
.See this example
Alternatively use css. See this example.
This solution is cross-browser compatible.
试试这个
删除手形光标
Try this
To Remove Hand Cursor
如果您使用[光标:指针],那么您可以访问当您将鼠标悬停在链接上时出现的手形光标。
And if you use [cursor: pointer] then you can access to the hand like cursor that appears when you hover over a link.