CSS Nested Descendant

Nested descendant selectors target deeper elements.

Preview

Code

<style>
div article p{
color:#16a34a;
}
</style>

<div>
<article>
<p>Nested paragraph</p>
</article>
</div>

More CSS Combinators Examples (7)