JSFiddle - React, Tailwind, and code Playground

HTML

<div class="vis">
    Some text
</div>

CSS

div
{
    position:absolute;
    top:0;
    left:0;
    height:100px;
    width:100px;
    background-color:red;
}

div.vis:hover
{
    opacity:0
}