JSFiddle - React, Tailwind, and code Playground

by levchenko_d

HTML

<span>
<button>Leave mark</button>
<button>Share on facebook too</button>
</span>

CSS

button,span{
    display:block;
    width: 150px;
    height: 30px;
}

span{
    margin: 200px auto;
}

button:last-of-type {
display:none;
}

span:hover > button:last-of-type {
    display:block;
}