diff options
| author | Mark Otto <[email protected]> | 2017-05-27 23:01:14 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2017-05-27 23:01:14 -0700 |
| commit | c72cc98bd56fb50259c84a1fced38751009eb930 (patch) | |
| tree | f4da17ed9826234724c2db48421e744c003b9e1c /docs/components/button-group.md | |
| parent | 5a3a356651f9ed0302ec4e4b629f1974caf26bc0 (diff) | |
| download | bootstrap-c72cc98bd56fb50259c84a1fced38751009eb930.tar.xz bootstrap-c72cc98bd56fb50259c84a1fced38751009eb930.zip | |
update components docs
Diffstat (limited to 'docs/components/button-group.md')
| -rw-r--r-- | docs/components/button-group.md | 25 |
1 files changed, 9 insertions, 16 deletions
diff --git a/docs/components/button-group.md b/docs/components/button-group.md index d2d5140ed..f328b9422 100644 --- a/docs/components/button-group.md +++ b/docs/components/button-group.md @@ -3,26 +3,12 @@ layout: docs title: Button group description: Group a series of buttons together on a single line with the button group, and super-power them with JavaScript. group: components +toc: true --- -Group a series of buttons together on a single line with the button group. Add on optional JavaScript radio and checkbox style behavior with [our buttons plugin]({{ site.baseurl }}/components/buttons/#button-plugin). - -## Contents - -* Will be replaced with the ToC, excluding the "Contents" header -{:toc} - -{% callout warning %} -## Ensure correct `role` and provide a label - -In order for assistive technologies (such as screen readers) to convey that a series of buttons is grouped, an appropriate `role` attribute needs to be provided. For button groups, this would be `role="group"`, while toolbars should have a `role="toolbar"`. - -In addition, groups and toolbars should be given an explicit label, as most assistive technologies will otherwise not announce them, despite the presence of the correct role attribute. In the examples provided here, we use `aria-label`, but alternatives such as `aria-labelledby` can also be used. -{% endcallout %} - ## Basic example -Wrap a series of buttons with `.btn` in `.btn-group`. +Wrap a series of buttons with `.btn` in `.btn-group`. Add on optional JavaScript radio and checkbox style behavior with [our buttons plugin]({{ site.baseurl }}/components/buttons/#button-plugin). {% example html %} <div class="btn-group" role="group" aria-label="Basic example"> @@ -32,6 +18,13 @@ Wrap a series of buttons with `.btn` in `.btn-group`. </div> {% endexample %} +{% callout warning %} +#### Ensure correct `role` and provide a label + +In order for assistive technologies (such as screen readers) to convey that a series of buttons is grouped, an appropriate `role` attribute needs to be provided. For button groups, this would be `role="group"`, while toolbars should have a `role="toolbar"`. + +In addition, groups and toolbars should be given an explicit label, as most assistive technologies will otherwise not announce them, despite the presence of the correct role attribute. In the examples provided here, we use `aria-label`, but alternatives such as `aria-labelledby` can also be used. +{% endcallout %} ## Button toolbar Combine sets of button groups into button toolbars for more complex components. Use utility classes as needed to space out groups, buttons, and more. |
