[Racine des codes] [Page précédente]

cursor pointer-hand

/Html JavaSript/css/cursor pointer-hand.css
a {cursor: pointer; cursor: hand;}

/*
Do not reverse those two values !
If you write your styles as shown above, then NS6+ will see the first value and ignore the second, so you get pointer. In IE5.x/Win, it sees both and uses the second, so you get hand.
If you reverse the values, then Netscape 6+ will be okay, but IE5.x/Win will see both and try to use the second. That won't get you the little hand-pointer icon in IE5.x/Win.
*/
[edit]