Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@turboclaw
Created September 26, 2012 01:47
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 turboclaw/3785519 to your computer and use it in GitHub Desktop.
Save turboclaw/3785519 to your computer and use it in GitHub Desktop.
Animating height, in "height:auto;" situations
/* Animate max-height instead! */
div {
max-height: 1em;
transition: 1s;
}
div:hover {
max-height: 1000em;
}​
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment