In the below example, I want to create a CSS rule that applies only to the header with the text "Blockhead".

 <div class="gumby">
     <span class="pokey"></span>
     <h3>Blockhead</h3>
     <h3>Clay rules</h3>
 </div>

Can I use parentheses, such as (gumby > pokey) + h3)? If not, what is my alternative?

link|improve this question

1  
No, parens are not allowed. – Šime Vidas Mar 29 '11 at 21:09
feedback

2 Answers

up vote 6 down vote accepted

.gumby > .pokey + h3 works by itself. No parentheses needed. Neither are they valid CSS selector operators.

The sequence of selectors and combinators is read from right to left, so it's interpreted as

Select an h3 element
that immediately follows an element with class pokey
that is a child of an element with class gumby.

And it implies that both .pokey and the h3 are children of .gumby, which in your case they are.

link|improve this answer
feedback

h3 is not inside .pokey so you must ommit .pokey from the rule

All u'd be able to do is

.gumby h3 {}

or do this

 <div class="gumby pokey">
     <h3>Blockhead</h3>
     <h3>Clay rules</h3>
 </div>

.gumby.pokey h3 {}

if a tag has more than one class you can pile them up in css if you don't use a space character

link|improve this answer
Just realised this may not have been what you was asking for. My apologies – Jase Mar 29 '11 at 21:10
Thank you, But you are correct - this does not address the problem. – smartcaveman Mar 29 '11 at 21:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.