JSFiddle - React, Tailwind, and code Playground

by fezec

HTML

<div>
    <input type="button" value="test a"></input>
    <input type="button" value="test B"></input>
    <input type="button" value="test c"></input>
</div>

CSS

div {
    width:200px;
    height:200px;
    background:red;
    border:1px solid;
}
input {
    display:none;
    cursor:pointer;
}
div:hover input {
    display:block;
}