![]() |
|
|
|
#1 |
|
In my style sheet I have:
a:hover { color:#bb2222; text-decoration:none } How can I modify the hover color for different links on the same page? Thanks, Jim Van Abbema Jim Van Abbema |
|
|
|
|
#2 |
|
Posts: n/a
|
In alt.html Jim Van Abbema said:
> How can I modify the hover color for different links on the same page? http://allmyfaqs.com/faq.pl?Links_with_different_colors -- v o i c e s |
|
|
|
#3 |
|
Posts: n/a
|
Jim Van Abbema wrote:
> In my style sheet I have: > a:hover { color:#bb2222; text-decoration:none } > > How can I modify the hover color for different links on the same page? Hmmm. This hasn't been answered for at least a week a.special:hover { color:#bb2222; text-decoration:none } <a>This is a normal link</a> <a class="special">This is a special link that fiddles with its underline</a> -- Cheers Richard. |
|