JSFiddle - React, Tailwind, and code Playground

by Joe

HTML

<div class="showhim">HOVER ME<div class="showme">hai</div>
</div>

CSS

.showme {
  display: none;
}

.showhim:hover .showme {
  display: block;
}