They seem to be working, for me, in FireFox. When I rollover, the black border turns red.
To answer your question, though, give all images the same class, with the CSS looking something like this:
.myImages {border:1px; border-thickness: 1px; border-color: #000; border-style: solid;}
Then, you can use CSS to cascade that definition to hyperlinks:
a:hover, a:active {color: #fff;}
a:hover .myImages,
a:active .myImages {border:1px; border-thickness: 1px; border-color: #fff; border-style: solid;}
Now, the border of your image links will turn red on hover or active.
tgreer
Made Her Cry
2,118 posts since Dec 2004
Reputation Points: 227
Solved Threads: 37
It does work in FireFox but IE6 doesn't like it
peter_budo
Code tags enforcer
15,436 posts since Dec 2004
Reputation Points: 2,806
Solved Threads: 902