Without grouping, we could do:
.footer_content a:link {
color: #FFFFFF;
}
.footer_content a:visited {
color: #FFFFFF;
}
With grouping:
.footer_content a:link, .footer_content a:visited {
color: #FFFFFF;
}
Is there a way to define a css selector to get rid of the extra .footer_content statement that does the same? Something that would look something like this:
.footer_content (a:link, a:visited) {
color: #FFFFFF;
}
source
share