CSS Nested Descendant
Preview
Code
<style>
div article p{
color:#16a34a;
}
</style>
<div>
<article>
<p>Nested paragraph</p>
</article>
</div>
<style>
div article p{
color:#16a34a;
}
</style>
<div>
<article>
<p>Nested paragraph</p>
</article>
</div>