Wed, 2004-11-03 08:11
hi
i've got this :
a.link_white:link {...}
a.link_white:visited {...}
a.link_white:hover {...}
a.link_white:active {...}
the 'link' and 'visited' are the same !
so are the 'hover' and 'active' !
why isnt this working :
a.link_white:link:visited {...}
a.link_white:hover:active {...}
Wed, 2004-11-03 08:54
#1
a:link grouping
Because it's the incorect syntax, your saying give me
the link with a class of link_white AND in the hover state AND in the Active state
rather than
(the link with a class of link_white AND in the hover state) OR (the link with a class of link_white AND in the Active State)
Use
a.link_white:link, a.link_white:visited
{...}
a.link_white:hover, a.link_white:active
{...}