tags:

views:

160

answers:

3

How do I use cursor hand cross browser?

+12  A: 
<elements>
{
    cursor:pointer;
}

CSS cursor Property

Developer Art
+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.

http://www.quirksmode.org/css/cursor.html

misterkeg
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
`cursor: move` is both intuitive and cross-browser compatible. http://www.quirksmode.org/css/cursor.html
MiseryIndex