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.
On Quirksmode there is compatibility table which shows hand isn’t indeed supported. Use
cursor: pointerinstead ofhand(because you really don’t care about IE <5.5), as it is explained in the bottom of the page: