Maybe the title of this question is ambiguous, what I really mean is:
#footer_list li a:link, #footer_list li a:visited
{
blah balh blah
}
Is there a shortcut for the two elements in CSS? so the CSS selectors can be shortened
|
Maybe the title of this question is ambiguous, what I really mean is:
Is there a shortcut for the two elements in CSS? so the CSS selectors can be shortened
| |||
|
feedback
|
|
Sure. If you give them each their own respective class/id names. But thats unnecessary. The code you have is perfectly acceptable, as CSS is Cascading Style Sheets, the rules cascade down essentially. | |||||||||
feedback
|
|
Your code is fine as is. I've been styling my sites with selectors like that and it hasn't bothered me or the browsers. If your server runs Ruby and you don't mind picking up a server-side "extension" to the standard CSS syntax, LESS provides nested rules so you can do something like this:
OK, I'm not sure what differences this will make, but I'm sure it'll be treated differently by browsers:
You can then place additional | |||||||||||||||
feedback
|
|
Do you have links within I'm imagining you have something like this in your markup:
In this case your rule only needs:
If you do (or might later) have links outside the
| |||
|
feedback
|