diff options
| author | Mark Otto <[email protected]> | 2015-04-17 14:24:11 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2015-04-17 14:24:11 -0700 |
| commit | 7f3c85ecdc9c868b7f025161ab52eedec2a81562 (patch) | |
| tree | a9de24199c7364f2353bb6bb0d7d47e96bcd1e80 /docs | |
| parent | 8b93787fd272ca270615fee00f269c504cb53fa7 (diff) | |
| download | bootstrap-7f3c85ecdc9c868b7f025161ab52eedec2a81562.tar.xz bootstrap-7f3c85ecdc9c868b7f025161ab52eedec2a81562.zip | |
remove nested .bd-example
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/components/buttons.md | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/docs/components/buttons.md b/docs/components/buttons.md index 9d2cc1a3c..79777e4ca 100644 --- a/docs/components/buttons.md +++ b/docs/components/buttons.md @@ -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>`. {% example html %} -<div class="bd-example"> - <div class="btn-group" data-toggle="buttons"> - <label class="btn btn-primary active"> - <input type="checkbox" checked autocomplete="off"> Checkbox 1 (pre-checked) - </label> - <label class="btn btn-primary"> - <input type="checkbox" autocomplete="off"> Checkbox 2 - </label> - <label class="btn btn-primary"> - <input type="checkbox" autocomplete="off"> Checkbox 3 - </label> - </div> +<div class="btn-group" data-toggle="buttons"> + <label class="btn btn-primary active"> + <input type="checkbox" checked autocomplete="off"> Checkbox 1 (pre-checked) + </label> + <label class="btn btn-primary"> + <input type="checkbox" autocomplete="off"> Checkbox 2 + </label> + <label class="btn btn-primary"> + <input type="checkbox" autocomplete="off"> Checkbox 3 + </label> </div> {% endexample %} |
