# Button Group > Group a series of buttons together on a single line with ``. ## Overview Button Groups are an easy way to group a series of buttons together. ```html
Button 1 Button 2 Button 3
Success Info Warning
``` ## Sizing Set the `size` prop to `lg` or `sm` to render larger or smaller, respectively, buttons. There is no need to specify the size on the individual buttons. ```html
Button 1 Button 2 Button 3
Left Middle Right
Left Middle Right
``` ## Vertical variation Make a set of buttons appear vertically stacked rather than horizontally by setting the `vertical` prop. Split button dropdowns are not supported here. ```html
Top Middle Bottom
``` ## Dropdown menu support Add [``](/docs/components/dropdown) menus directly inside your ``. Note that split dropdown menus are not supported when prop `vertical` is set. ```html
Button Item 1 Item 2 Item 3 Item 1 Item 2 Item 3
``` ## See also Also check out the [``](/docs/components/button-toolbar) component for generating toolbars containing button groups and input groups.