Skip to content

Instantly share code, notes, and snippets.

@nicordev
Created February 15, 2020 21:37
Show Gist options
  • Save nicordev/66aafa7af1c8d8716fa56bef4f706c3a to your computer and use it in GitHub Desktop.
Save nicordev/66aafa7af1c8d8716fa56bef4f706c3a to your computer and use it in GitHub Desktop.
Display an element if you hover or tap on another element.
.switch-display
{
display: none;
}
.switch-display-trigger:hover .switch-display, .switch-display-trigger:focus .switch-display
{
display: inline;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment