Skip to content

Instantly share code, notes, and snippets.

@lschatzkin
Created June 11, 2013 21:19
Show Gist options
  • Save lschatzkin/5760806 to your computer and use it in GitHub Desktop.
Save lschatzkin/5760806 to your computer and use it in GitHub Desktop.
dropdown arrows for nav menu items with sub-items
#nav-menu li > a:after {
color: #888;
content: ' ▾';
}
#nav-menu li > a:hover:after {
color: #444;
content: ' ▾';
}
#nav-menu li > a:only-child:after {
content: '';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment