Skip to content

Instantly share code, notes, and snippets.

@robsonsobral
Created February 26, 2014 01:40
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 robsonsobral/9221734 to your computer and use it in GitHub Desktop.
Save robsonsobral/9221734 to your computer and use it in GitHub Desktop.
transition using width or height auto
/**
* 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;
}
<ul>
<li>item
<ul>
<li>sub-item</li>
<li>sub-item</li>
</ul>
</li>
<li>item
<ul>
<li>sub-item</li>
<li>sub-item</li>
<li>sub-item</li>
<li>sub-item</li>
</ul>
</li>
<li>item
<ul>
<li>sub-item</li>
<li>sub-item</li>
<li>sub-item</li>
<li>sub-item</li>
<li>sub-item</li>
</ul>
</li>
<li>item
<ul>
<li>sub-item</li>
<li>sub-item</li>
</ul>
</li>
<li>item
<ul>
<li>sub-item</li>
<li>sub-item</li>
<li>sub-item</li>
</ul>
</li>
<li>item
<ul>
<li>sub-item</li>
<li>sub-item</li>
<li>sub-item</li>
</ul>
</li>
</ul>
// alert('Hello world!');
{"view":"split-vertical","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment