JSFiddle - React, Tailwind, and code Playground
by squarefoo
HTML
<div>
<div>
<a href="#">first nested</a>
<a href="#" class="second">second</a>
<a href="#">third</a>
</div>
</div>
<a href="#">first</a>
CSS
.second {
opacity: 0
}
.second:focus {
opacity: 1
}