JSFiddle - React, Tailwind, and code Playground
HTML
<div id="id">
<p>First text</p>
<div>
<p>Second text</p>
</div>
</div>
CSS
div#id > p { background: red; }
div#id p { color: green; }
<div id="id">
<p>First text</p>
<div>
<p>Second text</p>
</div>
</div>
div#id > p { background: red; }
div#id p { color: green; }