JSFiddle - React, Tailwind, and code Playground

by cheack

HTML

<div class="our_path">
    <span class="refresher">refresh!</span>
</div>

<div class="our_path">
    <span class="refresher">refresh!</span>
</div>

<div class="our_path">
    <span class="refresher">refresh!</span>
</div>
<div class="our_path">
    <span class="refresher">refresh!</span>
</div>

CSS

.our_path{
    width:100px;
    height:50px;
    border-width: 2px; 
    border-style: solid; 
    border-color: red; 
    margin:5px;
    float:left;
}

.refresher{
    visibility:hidden;
}

.our_path:hover .refresher{
    visibility:visible;
}