1
0
Fork 0
mirror of https://github.com/twbs/bootstrap.git synced 2022-11-09 12:25:43 -05:00

remove nested .bd-example

This commit is contained in:
Mark Otto 2015-04-17 14:24:11 -07:00
parent 8b93787fd2
commit 7f3c85ecdc

View file

@ -169,18 +169,16 @@ The checked state for these buttons is **only updated via `click` event** on the
Note that pre-checked buttons require you to manually add the `.active` class to the input's `<label>`. Note that pre-checked buttons require you to manually add the `.active` class to the input's `<label>`.
{% example html %} {% example html %}
<div class="bd-example"> <div class="btn-group" data-toggle="buttons">
<div class="btn-group" data-toggle="buttons"> <label class="btn btn-primary active">
<label class="btn btn-primary active"> <input type="checkbox" checked autocomplete="off"> Checkbox 1 (pre-checked)
<input type="checkbox" checked autocomplete="off"> Checkbox 1 (pre-checked) </label>
</label> <label class="btn btn-primary">
<label class="btn btn-primary"> <input type="checkbox" autocomplete="off"> Checkbox 2
<input type="checkbox" autocomplete="off"> Checkbox 2 </label>
</label> <label class="btn btn-primary">
<label class="btn btn-primary"> <input type="checkbox" autocomplete="off"> Checkbox 3
<input type="checkbox" autocomplete="off"> Checkbox 3 </label>
</label>
</div>
</div> </div>
{% endexample %} {% endexample %}