This repository has been archived by the owner on Feb 1, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 312
E010
Herst edited this page Jul 30, 2019
·
3 revisions
Note: This check has been removed in Bootlint v1.x.
As mentioned in the documentation, Bootstrap does not support multiple form-controls in a single input group, regardless of where they are located within the input group.
Wrong (unsupported):
<div class="input-group">
<span class="input-group-addon">$</span>
<input type="text" class="form-control" placeholder="Dollars">
<input type="text" class="form-control" placeholder="Cents">
</div>
Right (supported):
<div class="input-group">
<span class="input-group-addon">$</span>
<input type="text" class="form-control" placeholder="Amount">
</div>
Wrong (unsupported):
<div class="input-group">
<input type="text" class="form-control" placeholder="Username">
<span class="input-group-addon">@</span>
<input type="text" class="form-control" placeholder="Domain">
</div>
Right (supported):
<div class="input-group">
<input type="text" class="form-control" placeholder="Username">
<span class="input-group-addon">@example.com</span>
</div>
Bootlint documentation wiki content is licensed under the CC BY 3.0 License, and based on Bootstrap's docs which are copyright Twitter, Inc.