Debbie Campbell wrote:

> .content-mid-link a, a:link, a:visited {

.content-mid-link a =
Selects any a element that is a descendant of any element with a class 
attribute that contains the word content-mid-link.

a:link =
Selects any a element whose target has not been visited.

a:visited =
Selects any a element whose target has been visited.


The commas between these three selectors do not change the meaning.


/Any a element on the page/ is selected in selector 2+3.


If your intention was to select the links inside .content-mid-link only, 
then  this should be sufficient:

.content-mid-link a {property: value; ...}


Revise your selectors. For example

#navigation li a:hover, a:active { color: fuchsia}

will select /any/ active link on your page.

Probably your intention was

#navigation li a:hover, #navigation li a:active { color: fuchsia}


Ingo


-- 
http://www.satzansatz.de/css.html
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to