JSFiddle - React, Tailwind, and code Playground

by Afzaal Ahmad Zeeshan

HTML

<a href="#">Link</a>
<button>Button<button>

CSS

button {
    display: none;
}

a:hover + button {
    display: block;
}