JSFiddle - React, Tailwind, and code Playground

by Emmanuel Garcia

HTML

<div><a href="#show" style="padding:5px; background-color:red; color:white">show</a><div id="show"><div id="hide">

ssssssssss<br><br>
ssssssss<br><br>
<a href="#hide" style="padding:5px; background-color:red; color:white">hide</a></div></div></div>

CSS

#show {display:none ; }
#hide {display:block;}
#show:target {display: block; }
#hide:target {display: none; }