What is meant by the following selector?

.a .b + .c .d { ... }

Intended meaning (and way in which it appears to function): Select d inside c that is adjacent to b inside a

/* Brackets to hide ambiguity */
(.a .b + .c) .d

Is this correct use of the adjacenct sibling selector? What is the operator + precedence in CSS grammar?

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

Select .d inside .c that is adjacent to .b inside .a

Yes, that's right. You also placed your brackets correctly. Nest them some more to be clearer:

(((.a) .b) + .c) .d

In this example, only the second p.d element is matched:

<div class="a">
  <div class="b">
    <p class="d"></p> <!-- [1] -->
  </div>
  <div class="c">
    <p class="d"></p> <!-- [2] -->
  </div> 
  <div class="c">
    <p class="d"></p> <!-- [3] -->
  </div>
</div>
  1. Not selected
    This p.d element isn't contained in an element with the class c.

  2. Selected
    This p.d element is contained in a .c element. The .c element immediately follows a .b element, and both of these share the .a ancestor element.

  3. Not selected
    This p.d element is contained in a .c element. However, this doesn't immediately follow a .b element; instead it comes after another .c element, so its p.d doesn't satisfy the selector.

    If the general sibling combinator ~ were used instead of the adjacent sibling combinator +, as in

    .a .b ~ .c .d
    

    Then this p.d would be matched.

What is the operator + precedence in CSS grammar?

All compound/simple selectors and combinators in a sequence are processed from right to left. This answer elaborates. (This may be counter-intuitive when you think in brackets; to make sense of it simply treat the brackets as if the outermost ones came first.)

link|improve this answer
You're right! I've deleted my answer. Thanks for clarifying. – Jason Gennaro Jul 31 '11 at 2:36
Remember that brackets/parentheses aren't actually valid selector operators; they're used in the question and answer for clarity. – BoltClock Jul 31 '11 at 2:56
@Jason Gennaro: No problem; the idea is that you work through the selector one step at a time, in sequence. – BoltClock Jul 31 '11 at 2:57
It was that reading left-to-right instead of right-to-left that got me. – Jason Gennaro Jul 31 '11 at 3:01
@BoltClock thank you for your detailed explanation. – Lea Hayes Jul 31 '11 at 12:41
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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