JSFiddle - React, Tailwind, and code Playground

by SLaks

HTML

<div id="container">
    <a href="#container">Show Content</a>
    <div id="content">I am some content!</div>
</div>

CSS

#container #content {
    display: none;
}
#container:target #content {
    display: block;
}
#container:target a {
    display: none;
}