JSFiddle - React, Tailwind, and code Playground
by dima_k
HTML
<p>Paragraph without class</p>
<br/>
<div>
<p>Paragraph inside a div</p>
<br/>
<span>
<p>Paragraph third level</p>
</span>
</div>
CSS
/* You can apply styles to all element descendants. For example next rule apply background color to all p elements that placed inside div */
div p {
background-color: green;
}