Mon, 2007-07-23 12:44
After reading Eric Meyer's "Css the Definitive Guide" this part wasn't clear:
How is it possible to form the declaration "attach a certain attribute to (example) all h1 tags inside a div with a particular id". Can you do that or do you have to include the h1 tags in a different id or class?
Mon, 2007-07-23 13:00
#1
if I understand the question
if I understand the question correctly you're speaking of descendant selectors
#particular h1 {properties: values;}
will target all h1s inside an element with the id of particular.
Tue, 2007-07-24 13:25
#2
Thank you, this has been
Thank you, this has been very helpfull