Skip to content
This repository has been archived by the owner on Feb 1, 2022. It is now read-only.
cvrebert edited this page Oct 12, 2014 · 1 revision

E019

.checkbox-inline should only be used on <label> elements

Wrong:

<span class="checkbox-inline">
  <input type="checkbox" id="inlineCheckbox1" value="option1" /> Option number one
</span>

Right:

<label class="checkbox-inline">
  <input type="checkbox" id="inlineCheckbox1" value="option1" /> Option number one
</label>

Incorrect markup used with the .checkbox-inline class. The correct markup structure is label.checkbox-inline>input[type="checkbox"]

.checkbox-inline requires a specific DOM structure. There cannot be any intervening layers of elements.

Wrong:

<label class="checkbox-inline">
  <span class="my-awesome-wrapper">
    <input type="checkbox" id="inlineCheckbox1" value="option1" /> Option number one
  </span>
</label>

Right:

<label class="checkbox-inline">
  <input type="checkbox" id="inlineCheckbox1" value="option1" /> Option number one
</label>
Clone this wiki locally