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 312
E019
cvrebert edited this page Oct 12, 2014
·
1 revision
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>
Bootlint documentation wiki content is licensed under the CC BY 3.0 License, and based on Bootstrap's docs which are copyright Twitter, Inc.