Created
December 29, 2013 20:18
-
-
Save nagataka/8174356 to your computer and use it in GitHub Desktop.
tips for using bootstrap dropdown btn with caret
This file contains 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 class="btn-group"> | |
<button class="btn btn-primary">Manu</span></button> | |
<button class="btn btn-primary dropdown-toggle" data-toggle="dropdown"><span class="caret"></span></button> | |
<ul class="dropdown-menu"> | |
<li><a href="">Action</a></li> | |
<li><a href="">Action</a></li> | |
<li class="divider"></li> | |
<li><a href="">Action</a></li> | |
</ul> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment