JSFiddle - React, Tailwind, and code Playground
by Dineshkani
HTML
<div id="hello">Hello World
<span id="desc">In here the css search only for the span which has the parent of div</span><br/>
<span id="desc">Examples</span>
</div><br/>
<span><span id="hello">Hello World</span></span>
CSS
div > span{
font-size: 30px;
}