Skip to content

Instantly share code, notes, and snippets.

@tmlangley
Created September 21, 2016 19:58
Show Gist options
  • Save tmlangley/24f8a25e69e44c17712fecaf789219f0 to your computer and use it in GitHub Desktop.
Save tmlangley/24f8a25e69e44c17712fecaf789219f0 to your computer and use it in GitHub Desktop.
Dropdown navigation boilerplate
nav {
// wrapper styles...
// All tier menus (ul selector)
.menu {}
// All list items
li {}
// All links
a {}
// Tier 1 menu only
> .menu {}
// Tier 1 list items only
> .menu > li {}
// Tier 1 links only
> .menu > li > a {}
// Tier 2 menu only
.menu .menu {}
// Tier 2 list items
li li {}
// Tier 2 links
li li a {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment