2014-07-13 03:59:31 -04:00
---
2015-08-15 01:45:55 -04:00
layout: docs
2014-07-13 03:59:31 -04:00
title: Button group
2015-08-05 20:47:45 -04:00
group: components
2014-07-13 03:59:31 -04:00
---
2015-08-20 20:15:17 -04:00
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 ).
2014-03-16 22:03:53 -04:00
2015-05-29 04:58:52 -04:00
## Contents
* Will be replaced with the ToC, excluding the "Contents" header
{:toc}
2015-08-18 23:25:18 -04:00
## Basic example
2014-03-16 22:03:53 -04:00
2014-07-13 04:23:34 -04:00
Wrap a series of buttons with `.btn` in `.btn-group` .
{% example html %}
2014-11-30 23:17:45 -05:00
< div class = "btn-group" role = "group" aria-label = "Basic example" >
2014-07-08 20:14:14 -04:00
< button type = "button" class = "btn btn-secondary" > Left< / button >
< button type = "button" class = "btn btn-secondary" > Middle< / button >
< button type = "button" class = "btn btn-secondary" > Right< / button >
2014-03-16 22:03:53 -04:00
< / div >
2014-07-13 04:23:34 -04:00
{% endexample %}
2014-03-16 22:03:53 -04:00
2015-08-18 23:25:18 -04:00
## Button toolbar
2014-07-13 04:23:34 -04:00
Combine sets of button groups into button toolbars for more complex components.
{% example html %}
2014-11-30 23:17:45 -05:00
< div class = "btn-toolbar" role = "toolbar" aria-label = "Toolbar with button groups" >
< div class = "btn-group" role = "group" aria-label = "First group" >
2014-07-13 04:23:34 -04:00
< button type = "button" class = "btn btn-secondary" > 1< / button >
< button type = "button" class = "btn btn-secondary" > 2< / button >
< button type = "button" class = "btn btn-secondary" > 3< / button >
< button type = "button" class = "btn btn-secondary" > 4< / button >
< / div >
2014-11-30 23:17:45 -05:00
< div class = "btn-group" role = "group" aria-label = "Second group" >
2014-07-13 04:23:34 -04:00
< button type = "button" class = "btn btn-secondary" > 5< / button >
< button type = "button" class = "btn btn-secondary" > 6< / button >
< button type = "button" class = "btn btn-secondary" > 7< / button >
< / div >
2014-11-30 23:17:45 -05:00
< div class = "btn-group" role = "group" aria-label = "Third group" >
2014-07-13 04:23:34 -04:00
< button type = "button" class = "btn btn-secondary" > 8< / button >
< / div >
2014-03-16 22:03:53 -04:00
< / div >
2014-07-13 04:23:34 -04:00
{% endexample %}
2015-08-18 23:25:18 -04:00
## Sizing
2014-07-13 04:23:34 -04:00
2015-01-03 23:08:58 -05:00
Instead of applying button sizing classes to every button in a group, just add `.btn-group-*` to each `.btn-group` , including each one when nesting multiple groups.
2014-03-16 22:03:53 -04:00
2015-04-16 17:07:20 -04:00
< div class = "bd-example" >
2014-11-30 23:17:45 -05:00
< div class = "btn-group btn-group-lg" role = "group" aria-label = "Large button group" >
< button type = "button" class = "btn btn-secondary" > Left< / button >
< button type = "button" class = "btn btn-secondary" > Middle< / button >
< button type = "button" class = "btn btn-secondary" > Right< / button >
2014-07-13 04:23:34 -04:00
< / div >
2014-11-30 23:17:45 -05:00
< br >
< div class = "btn-group" role = "group" aria-label = "Default button group" >
< button type = "button" class = "btn btn-secondary" > Left< / button >
< button type = "button" class = "btn btn-secondary" > Middle< / button >
< button type = "button" class = "btn btn-secondary" > Right< / button >
2014-07-13 04:23:34 -04:00
< / div >
2014-11-30 23:17:45 -05:00
< br >
< div class = "btn-group btn-group-sm" role = "group" aria-label = "Small button group" >
< button type = "button" class = "btn btn-secondary" > Left< / button >
< button type = "button" class = "btn btn-secondary" > Middle< / button >
< button type = "button" class = "btn btn-secondary" > Right< / button >
2014-07-13 04:23:34 -04:00
< / div >
< / div >
2014-03-16 22:03:53 -04:00
{% highlight html %}
2014-11-30 23:17:45 -05:00
< div class = "btn-group btn-group-lg" role = "group" aria-label = "..." > ...< / div >
< div class = "btn-group" role = "group" aria-label = "..." > ...< / div >
< div class = "btn-group btn-group-sm" role = "group" aria-label = "..." > ...< / div >
2014-03-16 22:03:53 -04:00
{% endhighlight %}
2015-08-18 23:25:18 -04:00
## Nesting
2014-03-16 22:03:53 -04:00
2014-07-13 04:23:34 -04:00
Place a `.btn-group` within another `.btn-group` when you want dropdown menus mixed with a series of buttons.
{% example html %}
2014-11-30 23:17:45 -05:00
< div class = "btn-group" role = "group" aria-label = "Button group with nested dropdown" >
2014-07-08 20:14:14 -04:00
< button type = "button" class = "btn btn-secondary" > 1< / button >
< button type = "button" class = "btn btn-secondary" > 2< / button >
2014-03-16 22:03:53 -04:00
2014-11-30 23:17:45 -05:00
< div class = "btn-group" role = "group" >
2015-06-19 02:56:43 -04:00
< button id = "btnGroupDrop1" type = "button" class = "btn btn-secondary dropdown-toggle" data-toggle = "dropdown" aria-haspopup = "true" aria-expanded = "false" >
2014-03-16 22:03:53 -04:00
Dropdown
< / button >
2015-08-20 18:17:35 -04:00
< div class = "dropdown-menu" aria-labelledby = "btnGroupDrop1" >
< a class = "dropdown-item" href = "#" > Dropdown link< / a >
< a class = "dropdown-item" href = "#" > Dropdown link< / a >
< / div >
2014-03-16 22:03:53 -04:00
< / div >
< / div >
2014-07-13 04:23:34 -04:00
{% endexample %}
2014-03-16 22:03:53 -04:00
2015-08-18 23:25:18 -04:00
## Vertical variation
2014-07-13 04:23:34 -04:00
Make a set of buttons appear vertically stacked rather than horizontally. **Split button dropdowns are not supported here.**
2015-04-16 17:07:20 -04:00
< div class = "bd-example" >
2014-11-30 23:17:45 -05:00
< div class = "btn-group-vertical" role = "group" aria-label = "Vertical button group" >
2014-07-13 04:23:34 -04:00
< button type = "button" class = "btn btn-secondary" > Button< / button >
< button type = "button" class = "btn btn-secondary" > Button< / button >
2014-11-30 23:17:45 -05:00
< div class = "btn-group" role = "group" >
2015-06-19 02:56:43 -04:00
< button id = "btnGroupVerticalDrop1" type = "button" class = "btn btn-secondary dropdown-toggle" data-toggle = "dropdown" aria-haspopup = "true" aria-expanded = "false" >
2014-07-13 04:23:34 -04:00
Dropdown
< / button >
2015-08-20 18:17:35 -04:00
< div class = "dropdown-menu" aria-labelledby = "btnGroupVerticalDrop1" >
< a class = "dropdown-item" href = "#" > Dropdown link< / a >
< a class = "dropdown-item" href = "#" > Dropdown link< / a >
< / div >
2014-07-13 04:23:34 -04:00
< / div >
< button type = "button" class = "btn btn-secondary" > Button< / button >
< button type = "button" class = "btn btn-secondary" > Button< / button >
2014-11-30 23:17:45 -05:00
< div class = "btn-group" role = "group" >
2015-06-19 02:56:43 -04:00
< button id = "btnGroupVerticalDrop2" type = "button" class = "btn btn-secondary dropdown-toggle" data-toggle = "dropdown" aria-haspopup = "true" aria-expanded = "false" >
2014-07-13 04:23:34 -04:00
Dropdown
< / button >
2015-08-20 18:17:35 -04:00
< div class = "dropdown-menu" aria-labelledby = "btnGroupVerticalDrop2" >
< a class = "dropdown-item" href = "#" > Dropdown link< / a >
< a class = "dropdown-item" href = "#" > Dropdown link< / a >
< / div >
2014-07-13 04:23:34 -04:00
< / div >
2014-11-30 23:17:45 -05:00
< div class = "btn-group" role = "group" >
2015-06-19 02:56:43 -04:00
< button id = "btnGroupVerticalDrop3" type = "button" class = "btn btn-secondary dropdown-toggle" data-toggle = "dropdown" aria-haspopup = "true" aria-expanded = "false" >
2014-07-13 04:23:34 -04:00
Dropdown
< / button >
2015-08-20 18:17:35 -04:00
< div class = "dropdown-menu" aria-labelledby = "btnGroupVerticalDrop3" >
< a class = "dropdown-item" href = "#" > Dropdown link< / a >
< a class = "dropdown-item" href = "#" > Dropdown link< / a >
< / div >
2014-07-13 04:23:34 -04:00
< / div >
2014-11-30 23:17:45 -05:00
< div class = "btn-group" role = "group" >
2015-06-19 02:56:43 -04:00
< button id = "btnGroupVerticalDrop4" type = "button" class = "btn btn-secondary dropdown-toggle" data-toggle = "dropdown" aria-haspopup = "true" aria-expanded = "false" >
2014-07-13 04:23:34 -04:00
Dropdown
< / button >
2015-08-20 18:17:35 -04:00
< div class = "dropdown-menu" aria-labelledby = "btnGroupVerticalDrop4" >
< a class = "dropdown-item" href = "#" > Dropdown link< / a >
< a class = "dropdown-item" href = "#" > Dropdown link< / a >
< / div >
2014-03-16 22:03:53 -04:00
< / div >
< / div >
2014-07-13 04:23:34 -04:00
< / div >
2014-03-16 22:03:53 -04:00
{% highlight html %}
< div class = "btn-group-vertical" >
...
< / div >
{% endhighlight %}
2015-08-18 23:25:18 -04:00
## Tooltips and popovers
Due to the specific implementation (and some other components), a bit of special casing is required for tooltips and popovers within button groups. **You'll have to specify the option `container: 'body'`** to avoid unwanted side effects (such as the element growing wider and/or losing its rounded corners when the tooltip or popover is triggered).