Hierarchy
-
child”)" href="../BB9ED53367854ECB9964E72C0113659A/index.htm" rel=bookmark>Child Selector (“parent > child”)
Selects all direct child elements specified by "child" of elements specified by "parent".
-
Descendant Selector (“ancestor descendant”)
Selects all elements that are descendants of a given ancestor.
-
Next Adjacent Selector (“prev + next”)
Selects all next elements matching "next" that are immediately preceded by a sibling "prev".
-
Next Siblings Selector (“prev ~ siblings”)
Selects all sibling elements that follow after the "prev" element, have the same parent, and match the filtering "siblings" selector.