Created
April 27, 2016 08:54
-
-
Save qzm/7bcfed79bf76ba4091e0496579be3679 to your computer and use it in GitHub Desktop.
dropdown snippets
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
.dropdown { | |
position: relative; | |
display: inline-block; | |
} | |
.dropdown-content { | |
display: none; | |
position: absolute; | |
background-color: #f9f9f9; | |
min-width: 160px; | |
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); | |
padding: 12px 16px; | |
z-index: 1; | |
} | |
.dropdown:hover .dropdown-content { | |
display: block; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment