JSFiddle - React, Tailwind, and code Playground

by Robert Barros

HTML

<div class="divbutton">
   <button type="button">Hello</button>
</div>

CSS

.divbutton {
    height: 30px;
    background: #000;
}

button {
    display: none;
}

.divbutton:hover button {
    display: block;
}