2014-07-13 00:59:31 -07:00
---
2015-08-14 22:45:55 -07:00
layout: docs
2014-07-13 00:59:31 -07:00
title: Input group
2017-10-22 19:39:32 -07:00
description: Easily extend form controls by adding text, buttons, or button groups on either side of textual inputs, custom selects, and custom file inputs.
2015-08-05 17:47:45 -07:00
group: components
2017-05-27 23:01:14 -07:00
toc: true
2014-07-13 00:59:31 -07:00
---
2017-10-22 19:39:32 -07:00
2014-07-13 01:12:02 -07:00
## Basic example
2014-03-16 19:03:53 -07:00
2017-06-17 21:10:06 -07:00
Place one add-on or button on either side of an input. You may also place one on both sides of an input. **We do not support multiple form-controls in a single input group** and `<label>` s must come outside the input group.
2014-07-13 01:12:02 -07:00
{% example html %}
2014-03-16 19:03:53 -07:00
< div class = "input-group" >
2015-01-03 20:08:58 -08:00
< span class = "input-group-addon" id = "basic-addon1" > @< / span >
2017-03-30 22:45:36 +01:00
< input type = "text" class = "form-control" placeholder = "Username" aria-label = "Username" aria-describedby = "basic-addon1" >
2014-03-16 19:03:53 -07:00
< / div >
2014-07-13 01:12:02 -07:00
< br >
2014-03-16 19:03:53 -07:00
< div class = "input-group" >
2017-03-30 22:45:36 +01:00
< input type = "text" class = "form-control" placeholder = "Recipient's username" aria-label = "Recipient's username" aria-describedby = "basic-addon2" >
2015-12-06 12:02:54 -08:00
< span class = "input-group-addon" id = "basic-addon2" > @example .com</ span >
2014-03-16 19:03:53 -07:00
< / div >
2014-07-13 01:12:02 -07:00
< br >
2015-08-04 22:29:45 -07:00
< label for = "basic-url" > Your vanity URL< / label >
< div class = "input-group" >
< span class = "input-group-addon" id = "basic-addon3" > https://example.com/users/< / span >
< input type = "text" class = "form-control" id = "basic-url" aria-describedby = "basic-addon3" >
< / div >
< br >
2014-03-16 19:03:53 -07:00
< div class = "input-group" >
< span class = "input-group-addon" > $< / span >
2015-01-03 20:08:58 -08:00
< input type = "text" class = "form-control" aria-label = "Amount (to the nearest dollar)" >
2014-03-16 19:03:53 -07:00
< span class = "input-group-addon" > .00< / span >
< / div >
2016-02-07 23:48:47 -08:00
< br >
< div class = "input-group" >
< span class = "input-group-addon" > $< / span >
< span class = "input-group-addon" > 0.00< / span >
< input type = "text" class = "form-control" aria-label = "Amount (to the nearest dollar)" >
< / div >
2014-07-13 01:12:02 -07:00
{% endexample %}
2014-03-16 19:03:53 -07:00
2014-07-13 01:12:02 -07:00
## Sizing
Add the relative form sizing classes to the `.input-group` itself and contents within will automatically resize—no need for repeating the form control size classes on each element.
{% example html %}
2014-03-16 19:03:53 -07:00
< div class = "input-group input-group-lg" >
2015-01-03 20:08:58 -08:00
< span class = "input-group-addon" id = "sizing-addon1" > @< / span >
2017-03-30 22:45:36 +01:00
< input type = "text" class = "form-control" placeholder = "Username" aria-label = "Username" aria-describedby = "sizing-addon1" >
2014-03-16 19:03:53 -07:00
< / div >
2014-07-13 01:12:02 -07:00
< br >
2017-08-10 22:56:32 -07:00
< div class = "input-group input-group-sm" >
2015-01-03 20:08:58 -08:00
< span class = "input-group-addon" id = "sizing-addon2" > @< / span >
2017-03-30 22:45:36 +01:00
< input type = "text" class = "form-control" placeholder = "Username" aria-label = "Username" aria-describedby = "sizing-addon2" >
2014-03-16 19:03:53 -07:00
< / div >
2014-07-13 01:12:02 -07:00
{% endexample %}
## Checkboxes and radio addons
2014-03-16 19:03:53 -07:00
2014-07-13 01:12:02 -07:00
Place any checkbox or radio option within an input group's addon instead of text.
2014-03-16 19:03:53 -07:00
2014-07-13 01:12:02 -07:00
{% example html %}
2014-03-16 19:03:53 -07:00
< div class = "row" >
< div class = "col-lg-6" >
< div class = "input-group" >
< span class = "input-group-addon" >
2015-01-03 20:08:58 -08:00
< input type = "checkbox" aria-label = "Checkbox for following text input" >
2014-03-16 19:03:53 -07:00
< / span >
2015-01-03 20:08:58 -08:00
< input type = "text" class = "form-control" aria-label = "Text input with checkbox" >
2014-07-13 01:12:02 -07:00
< / div >
< / div >
2014-03-16 19:03:53 -07:00
< div class = "col-lg-6" >
< div class = "input-group" >
< span class = "input-group-addon" >
2015-01-03 20:08:58 -08:00
< input type = "radio" aria-label = "Radio button for following text input" >
2014-03-16 19:03:53 -07:00
< / span >
2015-01-03 20:08:58 -08:00
< input type = "text" class = "form-control" aria-label = "Text input with radio button" >
2014-07-13 01:12:02 -07:00
< / div >
< / div >
< / div >
{% endexample %}
2014-03-16 19:03:53 -07:00
2016-02-07 23:48:47 -08:00
## Multiple addons
Multiple add-ons are supported and can be mixed with checkbox and radio input versions.
{% example html %}
< div class = "row" >
< div class = "col-lg-6" >
< div class = "input-group" >
< span class = "input-group-addon" >
< input type = "checkbox" aria-label = "Checkbox for following text input" >
< / span >
< span class = "input-group-addon" > $< / span >
< input type = "text" class = "form-control" aria-label = "Text input with checkbox" >
< / div >
< / div >
< div class = "col-lg-6" >
< div class = "input-group" >
< span class = "input-group-addon" > $< / span >
< span class = "input-group-addon" > 0.00< / span >
< input type = "text" class = "form-control" aria-label = "Text input with radio button" >
< / div >
< / div >
< / div >
{% endexample %}
2014-07-13 01:12:02 -07:00
## Button addons
2014-03-16 19:03:53 -07:00
2016-11-23 11:35:41 -08:00
Buttons in input groups must wrapped in a `.input-group-btn` for proper alignment and sizing. This is required due to default browser styles that cannot be overridden.
2014-07-13 01:12:02 -07:00
{% example html %}
2014-03-16 19:03:53 -07:00
< div class = "row" >
< div class = "col-lg-6" >
< div class = "input-group" >
< span class = "input-group-btn" >
2014-07-08 17:14:14 -07:00
< button class = "btn btn-secondary" type = "button" > Go!< / button >
2014-03-16 19:03:53 -07:00
< / span >
2017-03-30 22:45:36 +01:00
< input type = "text" class = "form-control" placeholder = "Search for..." aria-label = "Search for..." >
2014-07-13 01:12:02 -07:00
< / div >
< / div >
2014-03-16 19:03:53 -07:00
< div class = "col-lg-6" >
< div class = "input-group" >
2017-07-06 17:33:50 -04:00
< input type = "text" class = "form-control" placeholder = "Search for..." aria-label = "Search for..." >
2014-03-16 19:03:53 -07:00
< span class = "input-group-btn" >
2014-07-08 17:14:14 -07:00
< button class = "btn btn-secondary" type = "button" > Go!< / button >
2014-03-16 19:03:53 -07:00
< / span >
2014-07-13 01:12:02 -07:00
< / div >
< / div >
< / div >
2015-11-15 14:15:34 -08:00
< br >
< div class = "row" >
2017-10-03 03:57:57 +02:00
< div class = "col-lg-6 offset-lg-3" >
2015-11-15 14:15:34 -08:00
< div class = "input-group" >
< span class = "input-group-btn" >
< button class = "btn btn-secondary" type = "button" > Hate it< / button >
< / span >
2017-03-30 22:45:36 +01:00
< input type = "text" class = "form-control" placeholder = "Product name" aria-label = "Product name" >
2015-11-15 14:15:34 -08:00
< span class = "input-group-btn" >
< button class = "btn btn-secondary" type = "button" > Love it< / button >
< / span >
< / div >
< / div >
< / div >
2014-07-13 01:12:02 -07:00
{% endexample %}
2014-03-16 19:03:53 -07:00
2014-07-13 01:12:02 -07:00
## Buttons with dropdowns
{% example html %}
2014-03-16 19:03:53 -07:00
< div class = "row" >
< div class = "col-lg-6" >
< div class = "input-group" >
< div class = "input-group-btn" >
2015-06-18 23:56:43 -07:00
< button type = "button" class = "btn btn-secondary dropdown-toggle" data-toggle = "dropdown" aria-haspopup = "true" aria-expanded = "false" >
Action
< / button >
2015-08-21 00:17:35 +02:00
< div class = "dropdown-menu" >
< a class = "dropdown-item" href = "#" > Action< / a >
< a class = "dropdown-item" href = "#" > Another action< / a >
< a class = "dropdown-item" href = "#" > Something else here< / a >
< div role = "separator" class = "dropdown-divider" > < / div >
< a class = "dropdown-item" href = "#" > Separated link< / a >
< / div >
2014-07-13 01:12:02 -07:00
< / div >
2015-01-03 20:08:58 -08:00
< input type = "text" class = "form-control" aria-label = "Text input with dropdown button" >
2014-07-13 01:12:02 -07:00
< / div >
< / div >
2014-03-16 19:03:53 -07:00
< div class = "col-lg-6" >
< div class = "input-group" >
2015-01-03 20:08:58 -08:00
< input type = "text" class = "form-control" aria-label = "Text input with dropdown button" >
2014-03-16 19:03:53 -07:00
< div class = "input-group-btn" >
2015-06-18 23:56:43 -07:00
< button type = "button" class = "btn btn-secondary dropdown-toggle" data-toggle = "dropdown" aria-haspopup = "true" aria-expanded = "false" >
Action
< / button >
2015-08-21 00:17:35 +02:00
< div class = "dropdown-menu dropdown-menu-right" >
< a class = "dropdown-item" href = "#" > Action< / a >
< a class = "dropdown-item" href = "#" > Another action< / a >
< a class = "dropdown-item" href = "#" > Something else here< / a >
< div role = "separator" class = "dropdown-divider" > < / div >
< a class = "dropdown-item" href = "#" > Separated link< / a >
< / div >
2014-07-13 01:12:02 -07:00
< / div >
< / div >
2014-03-16 19:03:53 -07:00
< / div >
< / div >
2014-07-13 01:12:02 -07:00
{% endexample %}
2014-03-16 19:03:53 -07:00
2014-07-13 01:12:02 -07:00
## Segmented buttons
{% example html %}
< div class = "row" >
< div class = "col-lg-6" >
< div class = "input-group" >
< div class = "input-group-btn" >
2015-01-03 20:08:58 -08:00
< button type = "button" class = "btn btn-secondary" > Action< / button >
2016-09-04 18:50:39 -06:00
< button type = "button" class = "btn btn-secondary dropdown-toggle dropdown-toggle-split" data-toggle = "dropdown" aria-haspopup = "true" aria-expanded = "false" >
2014-07-13 01:12:02 -07:00
< span class = "sr-only" > Toggle Dropdown< / span >
< / button >
2015-08-21 00:17:35 +02:00
< div class = "dropdown-menu" >
< a class = "dropdown-item" href = "#" > Action< / a >
< a class = "dropdown-item" href = "#" > Another action< / a >
< a class = "dropdown-item" href = "#" > Something else here< / a >
< div role = "separator" class = "dropdown-divider" > < / div >
< a class = "dropdown-item" href = "#" > Separated link< / a >
< / div >
2014-07-13 01:12:02 -07:00
< / div >
2015-01-03 20:08:58 -08:00
< input type = "text" class = "form-control" aria-label = "Text input with segmented button dropdown" >
2014-07-13 01:12:02 -07:00
< / div >
< / div >
< div class = "col-lg-6" >
< div class = "input-group" >
2015-01-03 20:08:58 -08:00
< input type = "text" class = "form-control" aria-label = "Text input with segmented button dropdown" >
2014-07-13 01:12:02 -07:00
< div class = "input-group-btn" >
2015-01-03 20:08:58 -08:00
< button type = "button" class = "btn btn-secondary" > Action< / button >
2016-09-04 18:50:39 -06:00
< button type = "button" class = "btn btn-secondary dropdown-toggle dropdown-toggle-split" data-toggle = "dropdown" aria-haspopup = "true" aria-expanded = "false" >
2014-07-13 01:12:02 -07:00
< span class = "sr-only" > Toggle Dropdown< / span >
< / button >
2015-08-21 00:17:35 +02:00
< div class = "dropdown-menu dropdown-menu-right" >
< a class = "dropdown-item" href = "#" > Action< / a >
< a class = "dropdown-item" href = "#" > Another action< / a >
< a class = "dropdown-item" href = "#" > Something else here< / a >
< div role = "separator" class = "dropdown-divider" > < / div >
< a class = "dropdown-item" href = "#" > Separated link< / a >
< / div >
2014-07-13 01:12:02 -07:00
< / div >
< / div >
2014-03-16 19:03:53 -07:00
< / div >
< / div >
2014-07-13 01:12:02 -07:00
{% endexample %}
2015-03-09 14:48:51 +00:00
2017-10-19 13:04:39 -07:00
## Custom forms
Input groups include support for custom selects and custom file inputs. Browser default versions of these are not supported.
### Custom select
{% example html %}
< div class = "input-group mb-3" >
2017-10-22 14:04:46 -07:00
< label class = "input-group-addon" for = "inputGroupSelect01" > Options< / label >
< select class = "custom-select" id = "inputGroupSelect01" >
2017-10-19 13:04:39 -07:00
< option selected > Choose...< / option >
< option value = "1" > One< / option >
< option value = "2" > Two< / option >
< option value = "3" > Three< / option >
< / select >
< / div >
< div class = "input-group mb-3" >
2017-10-22 14:04:46 -07:00
< select class = "custom-select" id = "inputGroupSelect02" >
2017-10-19 13:04:39 -07:00
< option selected > Choose...< / option >
< option value = "1" > One< / option >
< option value = "2" > Two< / option >
< option value = "3" > Three< / option >
< / select >
2017-10-22 14:04:46 -07:00
< label class = "input-group-addon" for = "inputGroupSelect02" > Options< / label >
2017-10-19 13:04:39 -07:00
< / div >
< div class = "input-group mb-3" >
< span class = "input-group-btn" >
< button class = "btn btn-secondary" type = "button" > Button< / button >
< / span >
2017-10-22 14:04:46 -07:00
< select class = "custom-select" id = "inputGroupSelect03" >
2017-10-19 13:04:39 -07:00
< option selected > Choose...< / option >
< option value = "1" > One< / option >
< option value = "2" > Two< / option >
< option value = "3" > Three< / option >
< / select >
< / div >
< div class = "input-group" >
2017-10-22 14:04:46 -07:00
< select class = "custom-select" id = "inputGroupSelect04" >
2017-10-19 13:04:39 -07:00
< option selected > Choose...< / option >
< option value = "1" > One< / option >
< option value = "2" > Two< / option >
< option value = "3" > Three< / option >
< / select >
< span class = "input-group-btn" >
< button class = "btn btn-secondary" type = "button" > Button< / button >
< / span >
< / div >
{% endexample %}
### Custom file input
{% example html %}
< div class = "input-group mb-3" >
2017-10-22 14:04:46 -07:00
< span class = "input-group-addon" > Upload< / span >
2017-10-19 13:04:39 -07:00
< label class = "custom-file" >
2017-10-22 14:04:46 -07:00
< input type = "file" id = "inputGroupFile01" class = "custom-file-input" required >
2017-10-19 13:04:39 -07:00
< span class = "custom-file-control" > < / span >
< / label >
< / div >
< div class = "input-group mb-3" >
< label class = "custom-file" >
2017-10-22 14:04:46 -07:00
< input type = "file" id = "inputGroupFile02" class = "custom-file-input" required >
2017-10-19 13:04:39 -07:00
< span class = "custom-file-control" > < / span >
< / label >
< span class = "input-group-addon" id = "" > Upload< / span >
< / div >
< div class = "input-group mb-3" >
< span class = "input-group-btn" >
< button class = "btn btn-secondary" type = "button" > Button< / button >
< / span >
< label class = "custom-file" >
2017-10-22 14:04:46 -07:00
< input type = "file" id = "inputGroupFile03" class = "custom-file-input" required >
2017-10-19 13:04:39 -07:00
< span class = "custom-file-control" > < / span >
< / label >
< / div >
< div class = "input-group" >
< label class = "custom-file" >
2017-10-22 14:04:46 -07:00
< input type = "file" id = "inputGroupFile04" class = "custom-file-input" required >
2017-10-19 13:04:39 -07:00
< span class = "custom-file-control" > < / span >
< / label >
< span class = "input-group-btn" >
< button class = "btn btn-secondary" type = "button" > Button< / button >
< / span >
< / div >
{% endexample %}
2015-03-09 14:48:51 +00:00
## Accessibility
Screen readers will have trouble with your forms if you don't include a label for every input. For these input groups, ensure that any additional label or functionality is conveyed to assistive technologies.
2017-03-30 22:45:36 +01:00
The exact technique to be used (`<label>` elements hidden using the `.sr-only` class, or use of the `aria-label` and `aria-labelledby` attributes, possibly in combination with `aria-describedby` ) and what additional information will need to be conveyed will vary depending on the exact type of interface widget you're implementing. The examples in this section provide a few suggested, case-specific approaches.