JSFiddle - React, Tailwind, and code Playground
HTML
<a href="#">Link</a>
<button>Button<button>
CSS
button {
display: none;
}
a:hover + button {
display: block;
}
<a href="#">Link</a>
<button>Button<button>
button {
display: none;
}
a:hover + button {
display: block;
}