Skip to content

Instantly share code, notes, and snippets.

@kyrose
Created August 21, 2019 21:49
Show Gist options
  • Save kyrose/93cd70dcfefdc684a03c9d121bf27554 to your computer and use it in GitHub Desktop.
Save kyrose/93cd70dcfefdc684a03c9d121bf27554 to your computer and use it in GitHub Desktop.
Menu popouts on hover and focus
.reference {
position: relative;
background: tomato;
width: 100px;
height: 100px;
}
.popout-menu {
position: absolute;
visibility: hidden;
left: 100%;
background: #333;
color: white;
padding: 15px;
}
.reference:hover > .popout-menu,
.reference:focus > .popout-menu,
.reference:focus-within > .popout-menu {
visibility: visible;
}
<div class="reference" tabindex="0"><div class="popout-menu">Popout menu</div></div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment