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