Created
January 10, 2014 23:00
-
-
Save lnickers2004/8364355 to your computer and use it in GitHub Desktop.
Bootstrap3: Radio Buttons
This file contains hidden or 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
<!--alternative to radio buttons--> | |
<div class="btn-group btn-group-sm btn" data-toggle="buttons"> | |
<label class="btn btn-success"> | |
<input type="radio" name="Favorite" value=" " />Dude</label> | |
<label class="btn btn-success"> | |
<input type="radio" name="Favorite" value=" " />Donny</label> | |
<label class="btn btn-success"> | |
<input type="radio" name="Favorite" value=" " />Maude</label> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment