PDA

View Full Version : CSS Help



LukeySD
February 15th, 2002, 04:51
A:hover {text-decoration: none; color: #ff0000;}

whats the css for the cursor change so when u mouseover a link it changes to like load,help etc and where would it go in css thing above

megapuzik
February 15th, 2002, 05:06
<a href="link.php" style="cursor:move">asdasdasd</a>

LukeySD
February 15th, 2002, 05:24
What about in the whole css block in head tags

meow
February 15th, 2002, 20:21
Here you have to codes:
http://www.w3.org/TR/REC-CSS2/ui.html#propdef-cursor

You always separate properties with a semi colon. It doesn't matter which they are. Just keep adding eveything you want for that selector with semi colon in between.

a:hover {text-decoration: none; color: #ff0000; cursor: pointer }

<ADD>
BTW IE5x doesn't support "pointer", if you want to use that. You need to add the MS version "hand".

{ cursor: pointer; cursor: hand }
(In that order)