Answer the question
In order to leave comments, you need to log in
How can I make the menu appear smoothly?
There is a simple menu here. How to make that when you click on the first element of the submenu, it slowly "floats" from under it.
Answer the question
In order to leave comments, you need to log in
.submenu {
max-height: 0;
overflow: hidden;
transition: all 1s ease;
}
.submenu.active {
max-height: 200px;
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question