Created
March 4, 2014 19:48
How to Make Bootstrap Dropdown Menu Expand on Hover
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
ul.nav li.dropdown:hover ul.dropdown-menu{ | |
display: block; | |
} | |
/* if you want to hide the arrow */ | |
a.menu:after, .dropdown-toggle:after { | |
content: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment