CSS Combinators

A combinator is a sign that explains the relationship between selectors.

The table below shows the different combinators in CSS:

NameSignExampleExample description
Child combinator>div > pSelects every <p> element that are direct children of a <div> element
Descendant combinator(single space)div pSelects all <p> elements inside <div> elements
Namespace separator|ns | h2Selects all <h2> elements in namespace ns
Next-sibling combinator+div + pSelects the first <p> element that is placed immediately after <div> elements
Selector list,div, pSelects all <div> elements and all <p> elements
Subsequent-sibling combinator~p ~ ulSelects all <ul> elements that are preceded by a <p> element