Do I use Cursor Hand and Cursor Pointer or both?

Your can use blow css class for all browser supports.
Note that IE5 and IE5.5 use cursor: hand instead of cursor: pointer

.cursor-pointer{   
   cursor: pointer;   
   _cursor: hand; /* apply to ie 6 and below */
}

You can use here to write your stylesheets for different IE versions.


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


<elements>
{
    cursor:pointer;
}

CSS cursor Property

Tags:

Html

Css