CSS Child vs Descendant

Child selectors differ from descendant selectors.

Preview

Code

<style>
div > p{
color:red;
}
</style>

<div>
<p>Direct child</p>
<section>
<p>Nested paragraph</p>
</section>
</div>

More CSS Combinators Examples (7)