How do I use cursor hand cross browser?
+2
A:
Use cursor:pointer only, unless you need to support IE 5/5.5 in which case, include cursor:hand in a conditional comment.
misterkeg
2009-11-05 16:38:20
A:
You can also use your own custom cursor image:
.selecty { cursor: url(your_cursor.cur) }
This is especially useful for specifying cursors for draggable items. The standard browser cursors are pretty unintuitive for letting the user know a drag is possible.
Proof of Concept
2009-11-06 01:56:17
`cursor: move` is both intuitive and cross-browser compatible. http://www.quirksmode.org/css/cursor.html
MiseryIndex
2009-11-06 02:03:34