mdb-ui-kit/docs/components/button-group.md
2016-03-17 17:25:31 -05:00

7.0 KiB

layout title group
docs Button group components

[//]: # DO NOT EDIT IT WILL BE OVERWRITTEN - copy of bootstrap documentation generated by gulp docs:copy:bs-docs

{% callout info %} Bootstrap Reference Documentation This is a part of the reference documentation from Bootstrap. It is included here to demonstrate rendering with Material Design for Bootstrap default styling. See the Material Design section for more elements and customization options. {% endcallout %}

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}

Basic example

Wrap a series of buttons with .btn in .btn-group.

{% example html %}

Left Middle Right
{% endexample %}

Button toolbar

Combine sets of button groups into button toolbars for more complex components.

{% example html %}

1 2 3 4
5 6 7
8
{% endexample %}

Sizing

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.

Left Middle Right

Left Middle Right

Left Middle Right

{% highlight html %}

...
...
...
{% endhighlight %}

Nesting

Place a .btn-group within another .btn-group when you want dropdown menus mixed with a series of buttons.

{% example html %}

{% endexample %}

Vertical variation

Make a set of buttons appear vertically stacked rather than horizontally. Split button dropdowns are not supported here.

Button Button Button Button

{% highlight html %}

...
{% endhighlight %}

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).