JSFiddle - React, Tailwind, and code Playground
by Ken Z
HTML
<div class="main">
<img src="//placehold.it/400x300&text=IMG" />
<div class="show">
<h2>Some Text To Show</h2>
</div>
</div>
CSS
.show h2 {
display:none;
}
.main img:hover + div h2 {
display:block
}