diff --git a/selectors-4/Overview.bs b/selectors-4/Overview.bs index 71e6649f1da..57241dc94c4 100644 --- a/selectors-4/Overview.bs +++ b/selectors-4/Overview.bs @@ -446,10 +446,10 @@ Selectors Overview
E F or E >> F
+ E F
E > F
) or (>>) )
At times, authors may want selectors to describe an element that is
the descendant of another element in the document tree (e.g., "an
em element that is contained within an H1 element").
The descendant combinator expresses such a relationship.
- It has two syntactic forms:
- B that is an
+ A descendant combinator is whitespace that separates two compound selectors.
+
+ A selector of the form ''A B'' represents an element B that is an
arbitrary descendant of some ancestor element A.
) or (>>)
div p *[href]
>> form is introduced in Level 4.
- It was introduced to give the descendant combinator a visible, non-whitespace form
- and to bridge the gap between the child combinator (>)
- and the shadow-piercing descendant combinator (>>>) [[CSS-SCOPING-1]].
-
>)