Created
April 5, 2013 02:54
-
-
Save ozinepank/5316251 to your computer and use it in GitHub Desktop.
Bootstrap Dropdown
This file contains hidden or 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
<div style="z-index: 5;" class="topbar-wrapper"> | |
<div data-dropdown="dropdown" class="topbar"> | |
<div class="topbar-inner"> | |
<div class="container"> | |
<h3><a href="#">Project Name</a></h3> | |
<ul class="nav"> | |
<li class="active"><a href="#">Home</a></li> | |
<li><a href="#">Link</a></li> | |
<li><a href="#">Link</a></li> | |
<li><a href="#">Link</a></li> | |
<li class="dropdown"> | |
<a class="dropdown-toggle" href="#">Dropdown</a> | |
<ul class="dropdown-menu"> | |
<li><a href="#">Secondary link</a></li> | |
<li><a href="#">Something else here</a></li> | |
<li class="divider"></li> | |
<li><a href="#">Another link</a></li> | |
</ul> | |
</li> | |
</ul> | |
<form action="" class="pull-left"> | |
<input type="text" placeholder="Search"> | |
</form> | |
<ul class="nav secondary-nav"> | |
<li class="dropdown"> | |
<a class="dropdown-toggle" href="#">Dropdown</a> | |
<ul class="dropdown-menu"> | |
<li><a href="#">Secondary link</a></li> | |
<li><a href="#">Something else here</a></li> | |
<li class="divider"></li> | |
<li><a href="#">Another link</a></li> | |
</ul> | |
</li> | |
</ul> | |
</div> | |
</div><!-- /topbar-inner --> | |
</div><!-- /topbar --> | |
</div> |
This file contains hidden or 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; | |
} | |
a.menu:after, .dropdown-toggle:after { | |
content: none; | |
} | |
/*Demo : http://jsfiddle.net/ekjxu/ */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment