Paul,
You could use a universal selector like this:
#article * { color: blue;}
This saves specifying elements within the container, but it will color ALL
elements within the container to blue - so it may be overkill for your
needs.
Well supported by modern browsers including IE5, 5.5 and 6 (unbelievable!) -
but not supported by NN4.
HTH
Russ
> When making a declaration about a group of selectors, and members of the
> group are descendant selectors, is it necessary to declare the parent every
> time? For instance, I would rather not declare the parent #article 12 times
> in a group selector with 12 members...
>
> #article h1, #article p, #article ul, #article ol {color:blue}
>
> Is there a shorthand for that? To prevent repetition of the parent?
*****************************************************
The discussion list for http://webstandardsgroup.org/
See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list & getting help
*****************************************************