views:

52

answers:

2

In firefox on link hand cursor is showing which is ok but in IE7 it's showing text cursor.

How to get same cursor(hand) on links in all browser?

Can i add something in CSS reset to get cursor in all browser on links.?

+1  A: 

Use cursor: pointer not cursor: hand...

animuson
would it be good idea to keep this in css reset. `a, a:link {cursor:pointer)`?
metal-gear-solid
Anchors should be set to cursor pointer by default in every browser, you shouldn't need to reset it. You need to make sure your other classes *don't* use cursor hand.
animuson
A: 

Use cursor: pointer instead of cursor: hand

Pierreten