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

/* This selector very similar to previous, but selects not all p elements inside the div, but direct children of him */

div > p {
    background-color: green;
}