css – 跨浏览器的“cursor:pointer”

前端之家收集整理的这篇文章主要介绍了css – 跨浏览器的“cursor:pointer”前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
found these CSS attributes,使光标看起来像一只手:

> IE – style =“cursor:hand;”
> NS6 / IE6 – style =“cursor:pointer;”
> Cross Browser – style =“cursor:pointer; cursor:hand;”

但是我注意到Stack Overflow在其CSS中使用“cursor:pointer”。
然而,这显然也在IE上工作。

那么…给了什么?什么是正确的,浏览器无关的方式来使用这个CSS项目?

解决方法

根据 Quirksmode,唯一的跨浏览器语法是:
element {
    cursor: pointer;
    cursor: hand;
}

他们还提供了有关光标的更多信息:

In the past the hand value was
Microsoft’s way of saying pointer; and
IE 5.0 and 5.5 only support hand.
Because it’s the cursor value that’s
used most often,most other browsers
have also implemented hand.

Since IE 6 and 7 support pointer,
there’s no more reason to use hand,
except when older IEs are part of your
target audience.

我认为您链接页面可能会与最新的浏览器有点过时。

原文链接:https://www.f2er.com/css/220000.html

猜你在找的CSS相关文章