JSFiddle - React, Tailwind, and code Playground
by hirako2000
HTML
<div id="foo">show this with #foo.</div>
<div id="bar">#bar shows this.</div>
<a href="#foo">Click me for URL#foo</a>
<a href="#bar">Click me for URL#bar</a>
CSS
div {
display: none
}
div:target {
display: block
}