IMAGE 标记中的样式属性不适用于所有浏览器
我有一个样式属性不起作用。在我的代码中,我使用图像进行打印。我想要手形光标,所以我添加了样式属性,如下面的代码:
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Quirksmode 上有一个兼容性表,显示手确实不受支持。使用
cursor:pointer
而不是hand
(因为你真的不关心 IE <5.5),如页面底部所述:On Quirksmode there is compatibility table which shows hand isn't indeed supported. Use
cursor: pointer
instead ofhand
(because you really don't care about IE <5.5), as it is explained in the bottom of the page: