Skip to content

Instantly share code, notes, and snippets.

@DeanPoulin
Created January 14, 2014 04:59
Show Gist options
  • Select an option

  • Save DeanPoulin/8413311 to your computer and use it in GitHub Desktop.

Select an option

Save DeanPoulin/8413311 to your computer and use it in GitHub Desktop.
Navs with Dropdowns
<ul class="nav nav-tabs">
<li class="active"><a href="#">Home</a></li>
<li><a href="#">Help</a></li>
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">
Dropdown <span class="caret"></span>
</a>
<ul class="dropdown-menu" role="menu">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li class="divider"></li>
<li><a href="#">Separated link</a></li>
</ul>
</li>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment