Created
June 11, 2013 21:19
-
-
Save lschatzkin/5760806 to your computer and use it in GitHub Desktop.
dropdown arrows for nav menu items with sub-items
This file contains 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
#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