Created
February 12, 2020 13:33
-
-
Save Dodsaren/05dfd7db7c5f855377ea77fba14c7ddc to your computer and use it in GitHub Desktop.
Css accordion solution
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .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