Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@select
Created March 30, 2016 21:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save select/fbac6c838ea0d5adc8a482a490a25a07 to your computer and use it in GitHub Desktop.
Save select/fbac6c838ea0d5adc8a482a490a25a07 to your computer and use it in GitHub Desktop.
ul {
list-style: none;
position: relative;
padding: 0;
margin: 0;
box-sizing: border-box;
}
ul li {
position: relative;
float: left;
padding: 20px;
margin-right: 5px;
border: 1px solid #eee;
box-sizing: border-box;
cursor: pointer;
}
ul li ul {
position: absolute;
overflow: hidden;
left: 0;
top: 100%;
transition: 250ms;
max-height: 0;
background: #000;
color: #fff;
}
ul li:hover ul {
max-height: 300px
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment