Created
February 15, 2020 21:37
-
-
Save nicordev/66aafa7af1c8d8716fa56bef4f706c3a to your computer and use it in GitHub Desktop.
Display an element if you hover or tap on another element.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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