JSFiddle - React, Tailwind, and code Playground

by Shrikrishna Gupta

HTML

<div class="fullwrap">
    <div>One</div>
    <div>Two</div>
    <div>Three</div>
</div>

CSS

.fullwrap {
    width:300px;
    background:black;
    padding:5px;
}
.fullwrap div {
    height:30px;
    background:orange;
    margin:5px;
}
.fullwrap:hover :nth-child(1) { 
    display: none; 
}