It's the similar problem in FF. Once visited, your
rules

#container a.gallery:hover { border: 1px solid white; }
.
.
.
#container a.gallery, #container a.gallery:visited { ... border: 1px
solid black; }

won't let the thumbnails gain a white border on hover.

two options:
- Delete that :visited rule. Question if it is necessary to have a
visited state.

- Question the order of the rules.


#container a.gallery, #container a.gallery:visited { ... border: 1px
solid black; }

#container a.gallery:hover { border: 1px solid white; }

Ingo

______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to