Skip to content
This repository has been archived by the owner on Feb 1, 2022. It is now read-only.
Herst edited this page Jul 30, 2019 · 2 revisions

Note: This check has been removed in Bootlint v1.x.


E006

.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>
Clone this wiki locally