JSFiddle - React, Tailwind, and code Playground

by cathead

HTML

<div class="one">
  one
  <div class="two">
    two
    <div class="three">
      three
    </div>
  </div>
</div>

JavaScript

const one = document.querySelector('.one')

const twoThing = one.querySelector('.two')

twoThing.style.display = 'none'