E006 - Herst/bootlint-ng GitHub Wiki

Note: Below is the original page from the Bootlint documentation, some of the info here might not apply to Bootlint-NG!


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>
⚠️ **GitHub.com Fallback** ⚠️