JSFiddle - React, Tailwind, and code Playground

by Sedbol

HTML

<div id="div2" class="hidden">2</div>

CSS

.hidden{
        width: 100px;
        height: 100px;
        background: #0a0a0a;
       
    }
    div.hidden:hover{
        display: none;
    }