Skip to content

Instantly share code, notes, and snippets.

@DeanPoulin
Created January 14, 2014 01:47
Show Gist options
  • Select an option

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

Select an option

Save DeanPoulin/8411640 to your computer and use it in GitHub Desktop.
Button Dropdowns
<!-- Single button -->
<div class="btn-group">
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
Action <span class="caret"></span>
</button>
<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>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment