IMAGE 标记中的样式属性不适用于所有浏览器

发布于 2024-11-14 18:27:44 字数 307 浏览 1 评论 0原文

我有一个样式属性不起作用。在我的代码中,我使用图像进行打印。我想要手形光标,所以我添加了样式属性,如下面的代码:

<img id="btnPrint" alt="Print" imagealign="AbsBottom" onclick="winPrint()" src="../../Images/print.gif" style="cursor: hand" />  

但这在 Internet Explorer 以外的浏览器中不起作用。

I have a style attribute that is not working. In my code I am using an image for print. I want HAND CURSOR, so I added style attribute like the code below:

<img id="btnPrint" alt="Print" imagealign="AbsBottom" onclick="winPrint()" src="../../Images/print.gif" style="cursor: hand" />  

but this is not working in browsers other than Internet Explorer.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

幸福丶如此 2024-11-21 18:27:44

Quirksmode 上有一个兼容性表,显示手确实不受支持。使用 cursor:pointer 而不是 hand (因为你真的不关心 IE <5.5),如页面底部所述:

过去的手牌价值是
微软对指针的说法;和
IE 5.0和5.5仅支持手动。
因为它是光标值
最常用、大多数其他浏览器
还实现了手动。

由于 IE 6 和 7 支持指针,
没有更多理由用手
除非较旧的 IE 是您的一部分
目标受众。

On Quirksmode there is compatibility table which shows hand isn't indeed supported. Use cursor: pointer instead of hand (because you really don't care about IE <5.5), as it is explained in the bottom of the page:

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文