The Hand Cursor in IE5.0
Web Development
3
Posts
2
Posters
0
Views
1
Watching
-
How to make the hand cursor appear over HTML elements in IE 5.0 and Netscape? "cursor: pointer" works for IE 6.0 and Netscape 7.0 but not for IE 5.0 "cursor: hand" works for IE but not for Netscape? Any solutions?
Use both. Browsers that don't understand a css property are supposed to ignore that one, so
cursor: hand; cursor: pointer;
will do the trick. -
Use both. Browsers that don't understand a css property are supposed to ignore that one, so
cursor: hand; cursor: pointer;
will do the trick.