"Set any content id-labelled element with a first-child descendant element of any of h1, h2, h3, h4, h5, and h6 as follows:"
The selector I've created is found below:
#content:first-child h1,
#content:first-child h2,
#content:first-child h3,
#content:first-child h4,
#content:first-child h5,
#content:first-child h6 {}
Is this correct? and if so can it be further simplified?
Thanks for the help everyone!
:first-childapplying to in what you have written? What is it meant to apply to? – Chris Morgan Jul 11 '11 at 5:04:first-childwasn't introduced in CSS3, it's been around since CSS2. – BoltClock♦ Jul 11 '11 at 7:04