cursor: hand; and cursor: pointer explanation

I found this on Jeffrey Palermos Blog and wanted to share this with you guys, too. For IE you’re using the ‘hand’ statement and for Firefox the ‘pointer’ statement. Those 2 lines should do the job on the majority of the browser out there. Personally, I often encountered the case when IE didn’t render the hand mouse cursor if you move accross a special formated link. The following CSS Code should do the trick:

*.myStyle
{
   cursor: hand;
   cursor: pointer;
}

0 comments ↓

There are no comments yet...Kick things off by filling out the form below.

Leave a Comment