JSFiddle - React, Tailwind, and code Playground

by hlim188

HTML

<a href="#something">Show</a>
<div id="something">Bingo!</div>

CSS

#something {
  display: none;
}

#something:target {
  display: block;
  background-color: purple;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
}