Skip to content

Instantly share code, notes, and snippets.

@alexermakov
Created August 7, 2016 21:23
Show Gist options
  • Save alexermakov/8ea876fe5b99740c34354907f7a212d1 to your computer and use it in GitHub Desktop.
Save alexermakov/8ea876fe5b99740c34354907f7a212d1 to your computer and use it in GitHub Desktop.
фишка с задержкой выпадающего меню
/* делаем задержку показа меню,
а при hover (появлении ее отменяем)
*/
nav li> ul {
transition-delay: 1s;
}
nav li:hover ul {
transition-delay: 0s;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment