Skip to content

Instantly share code, notes, and snippets.

@Kolenov
Created October 10, 2017 21:27
Show Gist options
  • Save Kolenov/d791329d161666bdc7777a9c4049d932 to your computer and use it in GitHub Desktop.
Save Kolenov/d791329d161666bdc7777a9c4049d932 to your computer and use it in GitHub Desktop.
анимация для max-height
.slider ul {
max-height: 0;
overflow: hidden;
}
.slider:hover ul {
max-height: 1000px;
transition: .3s ease; /* анимация для max-height */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment