JSFiddle - React, Tailwind, and code Playground
HTML
<div class="box">
<button>hover button</button>
</div>
CSS
.box{
background-color: red;
width: 200px;
height: 200px;
}
.box button{
display: none;
}
.box:hover button{
display: block;
}