You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 1, 2022. It is now read-only.
cvrebert edited this page Oct 4, 2014
·
1 revision
E017
Incorrect markup used with the .checkbox class. The correct markup structure is .checkbox>label>input[type="checkbox"]
Bootstrap's .checkbox class requires the use of a specific DOM structure which matches the CSS selector .checkbox>label>input[type="checkbox"]. Using the .checkbox class with a different DOM structure can cause problems.
Right:
<divclass="checkbox"><label><inputtype="checkbox" /> Label text goes here
</label></div>