JSFiddle - React, Tailwind, and code Playground

HTML

<body class="main">
    <p>I am immediate child</p>
  <elem class="something">
    <elem id="link">
      <elem class="otherclass">
        <p class="text">I am immediate child</p>
      </elem>
    </elem>
  </elem>
</body>

CSS

.main  * .text{
    
    color:red;
}