Skip to content

Instantly share code, notes, and snippets.

@sandman21dan
Created November 2, 2017 10:48
Show Gist options
  • Save sandman21dan/fdf68ba09dab87f0381b0ef3bbcd0a55 to your computer and use it in GitHub Desktop.
Save sandman21dan/fdf68ba09dab87f0381b0ef3bbcd0a55 to your computer and use it in GitHub Desktop.
Css height expand animation
@keyframes height-expand {
0% {
opacity: 0;
transform: translateY(-4px);
}
100% {
opacity: 1;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment