JSFiddle - React, Tailwind, and code Playground

by Amens

HTML

<div class="hidden-container">
    <span>Some hidden text</span>
    <span class="show-again">Hey, I'm not none displayed!</span>
</div>

CSS

.hidden-container *{display:none;}
.hidden-container .show-again{display:block}