Created
January 11, 2014 00:03
-
-
Save lnickers2004/8365060 to your computer and use it in GitHub Desktop.
Bootstrap3: Input Groups Example
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
<!--input groups example--> | |
<div class="form-group"> | |
<label for="nameInput" class="control-label col-md-2">Your Name</label> | |
<div class="col-md-10"> | |
<div class="input-group"> | |
<span class="input-group-addon"><span class="glyphicon glyphicon-chevron-down"></span></span> | |
<input type="text" | |
name="nameInput" | |
class="form-control" | |
value="" | |
placeholder="e.g. Your Name" /> | |
<span class="input-group-addon">!</span> | |
</div> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment