CSS COURSE • LESSON

🔗 CSS Combinators

Master CSS and create modern responsive websites with EDUHUB CODE HUB.

CSS Combinators

Combinators explain relationships between selectors.

Descendant Selector



div p {

color:red;

}

Child Selector



div > p {

color:blue;

}

Adjacent Sibling



h1 + p {

color:green;

}