JSFiddle - React, Tailwind, and code Playground
HTML
<div class="a">
</div>
CSS
.a {
width: 200px;
height: 200px;
background: lightblue;
opacity: 0;
}
.a:hover {
opacity: 100;
}
<div class="a">
</div>
.a {
width: 200px;
height: 200px;
background: lightblue;
opacity: 0;
}
.a:hover {
opacity: 100;
}