Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save DeanPoulin/8411654 to your computer and use it in GitHub Desktop.
Split Button Dropdowns
<!-- Split button -->
<div class="btn-group">
<button type="button" class="btn btn-danger">Action</button>
<button type="button" class="btn btn-danger dropdown-toggle" data-toggle="dropdown">
<span class="caret"></span>
<span class="sr-only">Toggle Dropdown</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