Created
January 14, 2014 03:57
-
-
Save DeanPoulin/8412816 to your computer and use it in GitHub Desktop.
Input Group Sizing
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
| <div class="input-group input-group-lg"> | |
| <span class="input-group-addon">@</span> | |
| <input type="text" class="form-control" placeholder="Username"> | |
| </div> | |
| <div class="input-group"> | |
| <span class="input-group-addon">@</span> | |
| <input type="text" class="form-control" placeholder="Username"> | |
| </div> | |
| <div class="input-group input-group-sm"> | |
| <span class="input-group-addon">@</span> | |
| <input type="text" class="form-control" placeholder="Username"> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment