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 311
E006
Herst edited this page Jul 30, 2019
·
2 revisions
Note: This check has been removed in Bootlint v1.x.
.input-group
contains a <select>
; this should be avoided as <select>
s cannot be fully styled in WebKit browsers
Wrong:
<div class="input-group">
<span class="input-group-addon">$</span>
<select class="form-control">
<option value="5.00"><option>
<option value="50.00"><option>
<option value="500.00"><option>
</select>
</div>
##.input-group
contains a <textarea>
; only text-based <input>
s are permitted in an .input-group
Wrong:
<div class="input-group">
<span class="input-group-addon">✉</span>
<textarea class="form-control" placeholder="To Whom It May Concern:"></textarea>
</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.