Skip to content

Instantly share code, notes, and snippets.

@eklect
Created March 10, 2015 15:26
Show Gist options
  • Save eklect/f2d8d77b71bc05a4ba8a to your computer and use it in GitHub Desktop.
Save eklect/f2d8d77b71bc05a4ba8a to your computer and use it in GitHub Desktop.
Bootstrap 3 → Creating a single button dropdown
<!-- Single button -->
<div class="btn-group">
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-expanded="false">
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