Bootstrap 4 button groups are used to groups a series of buttons together on a single line or stack them in a vertical column.
Process to create bootstrap button group:
.btn-group
to the button group container.
.btn
and button background contextual classes btn-*
to the every <button>
,<a>
or <input>
element base class.
Note:In the above example,.btn-group
,.btn
followed by one of the background contextual classes (.btn-*
) is used to create button group.
Note: Please keep in mind that the button group is a collection of buttons that could be aligned either horizontally or vertically.
It combines set of button group into button toolbar.Utility classes play vital role to provide space between buttons group.
Follow the following steps to make button toolbar:
.btn-toolbar
to the button group container.
.btn-group
to the every button container.
.btn
& contextual classes btn-*
to the every <button>
container.
btn-primary
, btn-secondary
,btn-success
, btn-danger
,btn-warning
, btn-info
,btn-dark
, btn-light
, btn-link
.
Note:Please keep in mind that the button toolbar is a collection of button groups.Although button group is a collection of buttons.
To control the size of button group,follow the given below instructions:
.btn-group-lg
to the button container i.e having .btn-group
.
.btn-group-sm
to the button container i.e having .btn-group
.
Note:
Please keep in mind that button group size can be controlled by
.btn-group-lg
& .btn-group-sm
.To make larger button group,assign .btn-group-lg
to the button container while to make smaller button group ,assign
.btn-group-sm
to the button container having .btn-group
.
To create vertical button group,you have to apply .btn-group-vertical
to parent button container base class.
Note:
Vertical button group can easily created by assigning .btn-group-vertical
to the button
container.