Skip to content

Instantly share code, notes, and snippets.

@therebelrobot
Created February 26, 2014 23:11
Show Gist options
  • Save therebelrobot/9240793 to your computer and use it in GitHub Desktop.
Save therebelrobot/9240793 to your computer and use it in GitHub Desktop.
/**
* transition using width or height auto
*/
ul,li {
display: block;
margin: 0;
padding: 0;
width: 250px;
}
li {
border-bottom: 1px solid lightgrey;
}
li > ul {
max-height: 0;
overflow: hidden;
text-indent: .5em;
transition: max-height 1s;
}
li:hover > ul {
max-height: 1000px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment