Forum Moderators: not2easy

Message Too Old, No Replies

Different link hover style for certain text

         

expert_21

4:40 am on Apr 27, 2004 (gmt 0)

10+ Year Member



Hi, I am just wondering if it is possible to have a different link hover style for certain text. Say for instance for ordinary text, link hover would bring up yellow color. Is it possible then to hav a link hover that brings up green color for a special text? thank you.

Bonusbana

9:24 am on Apr 27, 2004 (gmt 0)

10+ Year Member



Yes it is!

css:

a.first:hover { color: green; }
a.second:hover { color: red; }

html:

<a href="#" class="first">first</a>
<a href="#" class="second">second</a>