Is there a precedence to combinators like
a > b ~ c d
(Note the space between c and d is the descendant combinator)
Or is it just read left-to-right, like
((a > b) ~ c) d
?
|
Is there a precedence to combinators like
(Note the space between Or is it just read left-to-right, like
?
| ||||
|
feedback
|
|
According to Google, selector sequences are evaluated from right to left:
Mozilla's article, Writing Efficient CSS for use in the Mozilla UI has a section that describes how their CSS engine evaluates selectors. This is XUL-specific, but the same layout engine is used both for Firefox's UI and pages that display in Firefox's viewport. As described by Google in the above quote, the key selector simply refers to the right-most item, so again it's from right to left:
In fact, if you were to ask me to read selectors and describe what they select in plain English, I would read them from right to left too (not that I'm certain whether this is relevant to implementation details though!). So, the selector:
would mean
| |||||||||||||||||
feedback
|
|
It doesn't matter.
will match the same elements regardless of whether you do it
or
I think that browsers go right-to-left. | |||
|
feedback
|
|
the spec doesn't mention anything about precedence (that I can find) but I believe it's strictly left -to- right evaluation | |||
|
feedback
|