Skip to content

Instantly share code, notes, and snippets.

@Dodsaren
Created February 12, 2020 13:33
Show Gist options
  • Save Dodsaren/05dfd7db7c5f855377ea77fba14c7ddc to your computer and use it in GitHub Desktop.
Save Dodsaren/05dfd7db7c5f855377ea77fba14c7ddc to your computer and use it in GitHub Desktop.
Css accordion solution
.accordion-content {
overflow: hidden;
max-height: 0;
transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}
.accordion-content.open {
max-height: 1000px;
transition: max-height 1s ease-in-out;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment