2014-07-12 07:34:47 +02:00
---
2015-08-15 07:45:55 +02:00
layout: docs
2020-10-25 21:29:58 +01:00
title: Navs and tabs
2016-10-03 03:19:47 +02:00
description: Documentation and examples for how to use Bootstrap's included navigation components.
2015-08-06 02:47:45 +02:00
group: components
2021-08-04 17:41:51 +02:00
aliases: "/docs/5.1/components/navs/"
2017-05-28 08:01:14 +02:00
toc: true
2014-07-12 07:34:47 +02:00
---
2016-12-23 20:02:14 +01:00
## Base nav
2014-07-12 07:34:47 +02:00
2017-05-28 08:01:14 +02:00
Navigation available in Bootstrap share general markup and styles, from the base `.nav` class to the active and disabled states. Swap modifier classes to switch between each style.
2017-05-04 18:07:52 +02:00
The base `.nav` component is built with flexbox and provide a strong foundation for building all types of navigation components. It includes some style overrides (for working with lists), some link padding for larger hit areas, and basic disabled styling.
2020-10-13 15:37:21 +02:00
{{< callout info > }}
2017-05-04 18:07:52 +02:00
The base `.nav` component does not include any `.active` state. The following examples include the class, mainly to demonstrate that this particular class does not trigger any special styling.
2020-02-07 12:18:30 +01:00
To convey the active state to assistive technologies, use the `aria-current` attribute — using the `page` value for current page, or `true` for the current item in a set.
2020-10-13 15:37:21 +02:00
{{< / callout > }}
2014-07-12 07:34:47 +02:00
2019-01-08 17:33:28 +01:00
{{< example > }}
2014-12-01 05:17:45 +01:00
< ul class = "nav" >
2014-07-12 07:34:47 +02:00
< li class = "nav-item" >
2020-02-07 12:18:30 +01:00
< a class = "nav-link active" aria-current = "page" href = "#" > Active< / a >
2014-07-12 07:34:47 +02:00
< / li >
< li class = "nav-item" >
< a class = "nav-link" href = "#" > Link< / a >
< / li >
< li class = "nav-item" >
2016-01-07 00:39:38 +01:00
< a class = "nav-link" href = "#" > Link< / a >
2014-07-12 07:34:47 +02:00
< / li >
2015-08-19 05:25:31 +02:00
< li class = "nav-item" >
2018-11-06 09:47:59 +01:00
< a class = "nav-link disabled" href = "#" tabindex = "-1" aria-disabled = "true" > Disabled< / a >
2014-07-12 07:34:47 +02:00
< / li >
< / ul >
2019-01-08 17:33:28 +01:00
{{< / example > }}
2014-07-12 07:34:47 +02:00
2018-06-11 22:06:53 +02:00
Classes are used throughout, so your markup can be super flexible. Use `<ul>` s like above, `<ol>` if the order of your items is important, or roll your own with a `<nav>` element. Because the `.nav` uses `display: flex` , the nav links behave the same as nav items would, but without the extra markup.
2014-07-12 07:34:47 +02:00
2019-01-08 17:33:28 +01:00
{{< example > }}
2014-12-01 05:17:45 +01:00
< nav class = "nav" >
2020-02-07 12:18:30 +01:00
< a class = "nav-link active" aria-current = "page" href = "#" > Active< / a >
2014-07-12 07:34:47 +02:00
< a class = "nav-link" href = "#" > Link< / a >
2016-01-07 00:39:38 +01:00
< a class = "nav-link" href = "#" > Link< / a >
2018-11-06 09:47:59 +01:00
< a class = "nav-link disabled" href = "#" tabindex = "-1" aria-disabled = "true" > Disabled< / a >
2014-07-12 07:34:47 +02:00
< / nav >
2019-01-08 17:33:28 +01:00
{{< / example > }}
2014-07-12 07:34:47 +02:00
2016-12-23 20:02:14 +01:00
## Available styles
2015-11-30 04:38:44 +01:00
2016-12-23 20:02:14 +01:00
Change the style of `.nav` s component with modifiers and utilities. Mix and match as needed, or build your own.
2015-11-30 04:38:44 +01:00
2016-12-23 20:02:14 +01:00
### Horizontal alignment
2015-11-30 04:38:44 +01:00
2019-02-04 11:22:02 +01:00
Change the horizontal alignment of your nav with [flexbox utilities ]({{< docsref "/layout/grid#horizontal-alignment" >}} ). By default, navs are left-aligned, but you can easily change them to center or right aligned.
2014-07-12 07:34:47 +02:00
2016-12-23 20:02:14 +01:00
Centered with `.justify-content-center` :
2014-07-12 07:34:47 +02:00
2019-01-08 17:33:28 +01:00
{{< example > }}
2016-12-23 20:02:14 +01:00
< ul class = "nav justify-content-center" >
2015-08-19 05:25:31 +02:00
< li class = "nav-item" >
2020-02-07 12:18:30 +01:00
< a class = "nav-link active" aria-current = "page" href = "#" > Active< / a >
2014-07-12 07:34:47 +02:00
< / li >
2015-06-19 08:56:43 +02:00
< li class = "nav-item" >
2015-11-04 00:58:19 +01:00
< a class = "nav-link" href = "#" > Link< / a >
2014-07-12 07:34:47 +02:00
< / li >
2015-06-19 08:56:43 +02:00
< li class = "nav-item" >
2016-01-07 00:39:38 +01:00
< a class = "nav-link" href = "#" > Link< / a >
2014-07-12 07:34:47 +02:00
< / li >
2015-09-02 18:35:43 +02:00
< li class = "nav-item" >
2018-11-06 09:47:59 +01:00
< a class = "nav-link disabled" href = "#" tabindex = "-1" aria-disabled = "true" > Disabled< / a >
2014-07-12 07:34:47 +02:00
< / li >
< / ul >
2019-01-08 17:33:28 +01:00
{{< / example > }}
2014-07-12 07:34:47 +02:00
2016-12-23 20:02:14 +01:00
Right-aligned with `.justify-content-end` :
2014-07-12 07:34:47 +02:00
2019-01-08 17:33:28 +01:00
{{< example > }}
2016-12-23 20:02:14 +01:00
< ul class = "nav justify-content-end" >
2015-08-19 05:25:31 +02:00
< li class = "nav-item" >
2020-02-07 12:18:30 +01:00
< a class = "nav-link active" aria-current = "page" href = "#" > Active< / a >
2014-07-12 07:34:47 +02:00
< / li >
2015-06-19 08:56:43 +02:00
< li class = "nav-item" >
2015-11-04 00:58:19 +01:00
< a class = "nav-link" href = "#" > Link< / a >
2014-07-12 07:34:47 +02:00
< / li >
2015-06-19 08:56:43 +02:00
< li class = "nav-item" >
2016-01-07 00:39:38 +01:00
< a class = "nav-link" href = "#" > Link< / a >
2014-07-12 07:34:47 +02:00
< / li >
2015-08-19 05:25:31 +02:00
< li class = "nav-item" >
2018-11-06 09:47:59 +01:00
< a class = "nav-link disabled" href = "#" tabindex = "-1" aria-disabled = "true" > Disabled< / a >
2014-07-12 07:34:47 +02:00
< / li >
< / ul >
2019-01-08 17:33:28 +01:00
{{< / example > }}
2014-07-12 07:34:47 +02:00
2016-12-23 20:02:14 +01:00
### Vertical
2014-07-12 07:34:47 +02:00
2016-12-23 20:02:14 +01:00
Stack your navigation by changing the flex item direction with the `.flex-column` utility. Need to stack them on some viewports but not others? Use the responsive versions (e.g., `.flex-sm-column` ).
2014-07-12 07:34:47 +02:00
2019-01-08 17:33:28 +01:00
{{< example > }}
2016-12-23 20:02:14 +01:00
< ul class = "nav flex-column" >
2015-08-19 05:25:31 +02:00
< li class = "nav-item" >
2020-02-07 12:18:30 +01:00
< a class = "nav-link active" aria-current = "page" href = "#" > Active< / a >
2014-07-12 07:34:47 +02:00
< / li >
2015-06-19 08:56:43 +02:00
< li class = "nav-item" >
2015-11-04 00:58:19 +01:00
< a class = "nav-link" href = "#" > Link< / a >
2014-07-12 07:34:47 +02:00
< / li >
2015-06-19 08:56:43 +02:00
< li class = "nav-item" >
2016-01-07 00:39:38 +01:00
< a class = "nav-link" href = "#" > Link< / a >
2014-07-12 07:34:47 +02:00
< / li >
2015-08-19 05:25:31 +02:00
< li class = "nav-item" >
2018-11-06 09:47:59 +01:00
< a class = "nav-link disabled" href = "#" tabindex = "-1" aria-disabled = "true" > Disabled< / a >
2014-07-12 07:34:47 +02:00
< / li >
< / ul >
2019-01-08 17:33:28 +01:00
{{< / example > }}
2014-07-12 07:34:47 +02:00
2016-12-23 20:02:14 +01:00
As always, vertical navigation is possible without `<ul>` s, too.
2016-01-07 00:39:38 +01:00
2019-01-08 17:33:28 +01:00
{{< example > }}
2016-12-23 20:02:14 +01:00
< nav class = "nav flex-column" >
2020-02-07 12:18:30 +01:00
< a class = "nav-link active" aria-current = "page" href = "#" > Active< / a >
2016-01-07 00:39:38 +01:00
< a class = "nav-link" href = "#" > Link< / a >
< a class = "nav-link" href = "#" > Link< / a >
2018-11-06 09:47:59 +01:00
< a class = "nav-link disabled" href = "#" tabindex = "-1" aria-disabled = "true" > Disabled< / a >
2016-01-07 00:39:38 +01:00
< / nav >
2019-01-08 17:33:28 +01:00
{{< / example > }}
2016-01-07 00:39:38 +01:00
2016-12-23 20:02:14 +01:00
### Tabs
2014-07-12 07:34:47 +02:00
2016-12-23 20:02:14 +01:00
Takes the basic nav from above and adds the `.nav-tabs` class to generate a tabbed interface. Use them to create tabbable regions with our [tab JavaScript plugin ](#javascript-behavior ).
2014-07-12 07:34:47 +02:00
2019-01-08 17:33:28 +01:00
{{< example > }}
2014-12-01 05:17:45 +01:00
< ul class = "nav nav-tabs" >
2015-06-19 08:56:43 +02:00
< li class = "nav-item" >
2020-02-07 12:18:30 +01:00
< a class = "nav-link active" aria-current = "page" href = "#" > Active< / a >
2015-08-19 05:25:31 +02:00
< / li >
2016-12-23 20:02:14 +01:00
< li class = "nav-item" >
< a class = "nav-link" href = "#" > Link< / a >
2014-07-12 07:34:47 +02:00
< / li >
2015-06-19 08:56:43 +02:00
< li class = "nav-item" >
2016-01-07 00:39:38 +01:00
< a class = "nav-link" href = "#" > Link< / a >
2014-07-12 07:34:47 +02:00
< / li >
2015-08-19 05:25:31 +02:00
< li class = "nav-item" >
2018-11-06 09:47:59 +01:00
< a class = "nav-link disabled" href = "#" tabindex = "-1" aria-disabled = "true" > Disabled< / a >
2014-07-12 07:34:47 +02:00
< / li >
< / ul >
2019-01-08 17:33:28 +01:00
{{< / example > }}
2014-07-12 07:34:47 +02:00
2016-12-23 20:02:14 +01:00
### Pills
Take that same HTML, but use `.nav-pills` instead:
2014-07-12 07:34:47 +02:00
2019-01-08 17:33:28 +01:00
{{< example > }}
2014-12-01 05:17:45 +01:00
< ul class = "nav nav-pills" >
2015-06-19 08:56:43 +02:00
< li class = "nav-item" >
2020-02-07 12:18:30 +01:00
< a class = "nav-link active" aria-current = "page" href = "#" > Active< / a >
2015-08-19 05:25:31 +02:00
< / li >
2016-12-23 20:02:14 +01:00
< li class = "nav-item" >
< a class = "nav-link" href = "#" > Link< / a >
2014-07-12 07:34:47 +02:00
< / li >
2015-06-19 08:56:43 +02:00
< li class = "nav-item" >
2016-01-07 00:39:38 +01:00
< a class = "nav-link" href = "#" > Link< / a >
2014-07-12 07:34:47 +02:00
< / li >
2015-08-19 05:25:31 +02:00
< li class = "nav-item" >
2018-11-06 09:47:59 +01:00
< a class = "nav-link disabled" href = "#" tabindex = "-1" aria-disabled = "true" > Disabled< / a >
2014-07-12 07:34:47 +02:00
< / li >
< / ul >
2019-01-08 17:33:28 +01:00
{{< / example > }}
2015-04-18 05:59:22 +02:00
2016-12-23 20:02:14 +01:00
### Fill and justify
2016-11-26 02:46:13 +01:00
2016-12-23 20:02:14 +01:00
Force your `.nav` 's contents to extend the full available width one of two modifier classes. To proportionately fill all available space with your `.nav-item` s, use `.nav-fill` . Notice that all horizontal space is occupied, but not every nav item has the same width.
2016-11-26 02:46:13 +01:00
2019-01-08 17:33:28 +01:00
{{< example > }}
2016-12-23 20:02:14 +01:00
< ul class = "nav nav-pills nav-fill" >
2016-11-26 02:46:13 +01:00
< li class = "nav-item" >
2020-02-07 12:18:30 +01:00
< a class = "nav-link active" aria-current = "page" href = "#" > Active< / a >
2016-11-26 02:46:13 +01:00
< / li >
< li class = "nav-item" >
2019-02-06 22:44:44 +01:00
< a class = "nav-link" href = "#" > Much longer nav link< / a >
2016-11-26 02:46:13 +01:00
< / li >
< li class = "nav-item" >
< a class = "nav-link" href = "#" > Link< / a >
< / li >
< li class = "nav-item" >
2018-11-06 09:47:59 +01:00
< a class = "nav-link disabled" href = "#" tabindex = "-1" aria-disabled = "true" > Disabled< / a >
2016-11-26 02:46:13 +01:00
< / li >
< / ul >
2019-01-08 17:33:28 +01:00
{{< / example > }}
2016-11-26 02:46:13 +01:00
2020-06-08 20:35:55 +02:00
When using a `<nav>` -based navigation, you can safely omit `.nav-item` as only `.nav-link` is required for styling `<a>` elements.
2017-03-19 23:47:34 +01:00
2019-01-08 17:33:28 +01:00
{{< example > }}
2017-03-19 23:47:34 +01:00
< nav class = "nav nav-pills nav-fill" >
2020-06-05 20:57:35 +02:00
< a class = "nav-link active" aria-current = "page" href = "#" > Active< / a >
< a class = "nav-link" href = "#" > Much longer nav link< / a >
< a class = "nav-link" href = "#" > Link< / a >
< a class = "nav-link disabled" href = "#" tabindex = "-1" aria-disabled = "true" > Disabled< / a >
2017-03-19 23:47:34 +01:00
< / nav >
2019-01-08 17:33:28 +01:00
{{< / example > }}
2017-03-19 23:47:34 +01:00
2016-12-23 20:02:14 +01:00
For equal-width elements, use `.nav-justified` . All horizontal space will be occupied by nav links, but unlike the `.nav-fill` above, every nav item will be the same width.
2016-11-26 02:46:13 +01:00
2019-01-08 17:33:28 +01:00
{{< example > }}
2019-02-06 22:44:44 +01:00
< ul class = "nav nav-pills nav-justified" >
< li class = "nav-item" >
2020-02-07 12:18:30 +01:00
< a class = "nav-link active" aria-current = "page" href = "#" > Active< / a >
2019-02-06 22:44:44 +01:00
< / li >
< li class = "nav-item" >
< a class = "nav-link" href = "#" > Much longer nav link< / a >
< / li >
< li class = "nav-item" >
< a class = "nav-link" href = "#" > Link< / a >
< / li >
< li class = "nav-item" >
2019-02-19 14:42:08 +01:00
< a class = "nav-link disabled" href = "#" tabindex = "-1" aria-disabled = "true" > Disabled< / a >
2019-02-06 22:44:44 +01:00
< / li >
< / ul >
2019-01-08 17:33:28 +01:00
{{< / example > }}
2016-11-26 02:46:13 +01:00
2020-06-05 20:57:35 +02:00
Similar to the `.nav-fill` example using a `<nav>` -based navigation.
2017-03-19 23:47:34 +01:00
2019-01-08 17:33:28 +01:00
{{< example > }}
2017-03-19 23:47:34 +01:00
< nav class = "nav nav-pills nav-justified" >
2020-06-05 20:57:35 +02:00
< a class = "nav-link active" aria-current = "page" href = "#" > Active< / a >
< a class = "nav-link" href = "#" > Much longer nav link< / a >
< a class = "nav-link" href = "#" > Link< / a >
< a class = "nav-link disabled" href = "#" tabindex = "-1" aria-disabled = "true" > Disabled< / a >
2017-03-19 23:47:34 +01:00
< / nav >
2019-01-08 17:33:28 +01:00
{{< / example > }}
2016-12-23 20:02:14 +01:00
## Working with flex utilities
2019-02-04 11:22:02 +01:00
If you need responsive nav variations, consider using a series of [flexbox utilities ]({{< docsref "/utilities/flex" >}} ). While more verbose, these utilities offer greater customization across responsive breakpoints. In the example below, our nav will be stacked on the lowest breakpoint, then adapt to a horizontal layout that fills the available width starting from the small breakpoint.
2016-11-26 02:46:13 +01:00
2019-01-08 17:33:28 +01:00
{{< example > }}
2016-12-23 20:02:14 +01:00
< nav class = "nav nav-pills flex-column flex-sm-row" >
2020-02-07 12:18:30 +01:00
< a class = "flex-sm-fill text-sm-center nav-link active" aria-current = "page" href = "#" > Active< / a >
2019-02-06 22:44:44 +01:00
< a class = "flex-sm-fill text-sm-center nav-link" href = "#" > Longer nav link< / a >
2016-12-23 20:02:14 +01:00
< a class = "flex-sm-fill text-sm-center nav-link" href = "#" > Link< / a >
2018-11-06 09:47:59 +01:00
< a class = "flex-sm-fill text-sm-center nav-link disabled" href = "#" tabindex = "-1" aria-disabled = "true" > Disabled< / a >
2016-12-23 20:02:14 +01:00
< / nav >
2019-01-08 17:33:28 +01:00
{{< / example > }}
2016-12-23 20:02:14 +01:00
## Regarding accessibility
If you're using navs to provide a navigation bar, be sure to add a `role="navigation"` to the most logical parent container of the `<ul>` , or wrap a `<nav>` element around the whole navigation. Do not add the role to the `<ul>` itself, as this would prevent it from being announced as an actual list by assistive technologies.
2020-02-07 12:18:30 +01:00
Note that navigation bars, even if visually styled as tabs with the `.nav-tabs` class, should **not** be given `role="tablist"` , `role="tab"` or `role="tabpanel"` attributes. These are only appropriate for dynamic tabbed interfaces, as described in the [<abbr title="Web Accessibility Initiative">WAI</abbr> <abbr title="Accessible Rich Internet Applications">ARIA</abbr> Authoring Practices ](https://www.w3.org/TR/wai-aria-practices/#tabpanel ). See [JavaScript behavior ](#javascript-behavior ) for dynamic tabbed interfaces in this section for an example. The `aria-current` attribute is not necessary on dynamic tabbed interfaces since our JavaScript handles the selected state by adding `aria-selected="true"` on the active tab.
2017-05-04 18:07:52 +02:00
2016-12-23 20:02:14 +01:00
## Using dropdowns
2019-02-04 11:22:02 +01:00
Add dropdown menus with a little extra HTML and the [dropdowns JavaScript plugin ]({{< docsref "/components/dropdowns#usage" >}} ).
2016-12-23 20:02:14 +01:00
### Tabs with dropdowns
2019-01-08 17:33:28 +01:00
{{< example > }}
2016-12-23 20:02:14 +01:00
< ul class = "nav nav-tabs" >
2016-11-26 02:46:13 +01:00
< li class = "nav-item" >
2020-02-07 12:18:30 +01:00
< a class = "nav-link active" aria-current = "page" href = "#" > Active< / a >
2016-11-26 02:46:13 +01:00
< / li >
2016-12-23 20:02:14 +01:00
< li class = "nav-item dropdown" >
2020-07-22 21:33:11 +02:00
< a class = "nav-link dropdown-toggle" data-bs-toggle = "dropdown" href = "#" role = "button" aria-expanded = "false" > Dropdown< / a >
2019-12-29 02:21:20 +01:00
< ul class = "dropdown-menu" >
< li > < a class = "dropdown-item" href = "#" > Action< / a > < / li >
< li > < a class = "dropdown-item" href = "#" > Another action< / a > < / li >
< li > < a class = "dropdown-item" href = "#" > Something else here< / a > < / li >
< li > < hr class = "dropdown-divider" > < / li >
< li > < a class = "dropdown-item" href = "#" > Separated link< / a > < / li >
< / ul >
2016-11-26 02:46:13 +01:00
< / li >
< li class = "nav-item" >
< a class = "nav-link" href = "#" > Link< / a >
< / li >
< li class = "nav-item" >
2018-11-06 09:47:59 +01:00
< a class = "nav-link disabled" href = "#" tabindex = "-1" aria-disabled = "true" > Disabled< / a >
2016-11-26 02:46:13 +01:00
< / li >
< / ul >
2019-01-08 17:33:28 +01:00
{{< / example > }}
2016-11-26 02:46:13 +01:00
2016-12-23 20:02:14 +01:00
### Pills with dropdowns
2016-11-26 02:46:13 +01:00
2019-01-08 17:33:28 +01:00
{{< example > }}
2016-12-23 20:02:14 +01:00
< ul class = "nav nav-pills" >
2016-11-26 02:46:13 +01:00
< li class = "nav-item" >
2020-02-07 12:18:30 +01:00
< a class = "nav-link active" aria-current = "page" href = "#" > Active< / a >
2016-11-26 02:46:13 +01:00
< / li >
2016-12-23 20:02:14 +01:00
< li class = "nav-item dropdown" >
2020-07-22 21:33:11 +02:00
< a class = "nav-link dropdown-toggle" data-bs-toggle = "dropdown" href = "#" role = "button" aria-expanded = "false" > Dropdown< / a >
2019-12-29 02:21:20 +01:00
< ul class = "dropdown-menu" >
< li > < a class = "dropdown-item" href = "#" > Action< / a > < / li >
< li > < a class = "dropdown-item" href = "#" > Another action< / a > < / li >
< li > < a class = "dropdown-item" href = "#" > Something else here< / a > < / li >
< li > < hr class = "dropdown-divider" > < / li >
< li > < a class = "dropdown-item" href = "#" > Separated link< / a > < / li >
< / ul >
2016-11-26 02:46:13 +01:00
< / li >
< li class = "nav-item" >
< a class = "nav-link" href = "#" > Link< / a >
< / li >
< li class = "nav-item" >
2018-11-06 09:47:59 +01:00
< a class = "nav-link disabled" href = "#" tabindex = "-1" aria-disabled = "true" > Disabled< / a >
2016-11-26 02:46:13 +01:00
< / li >
< / ul >
2019-01-08 17:33:28 +01:00
{{< / example > }}
2016-11-26 02:46:13 +01:00
2021-02-11 04:29:59 +01:00
## Sass
### Variables
{{< scss-docs name = "nav-variables" file = "scss/_variables.scss" > }}
2017-05-28 08:01:14 +02:00
## JavaScript behavior
2015-04-18 05:59:22 +02:00
2021-01-05 21:04:06 +01:00
Use the tab JavaScript plugin—include it individually or through the compiled `bootstrap.js` file—to extend our navigational tabs and pills to create tabbable panes of local content.
2015-04-18 05:59:22 +02:00
2021-02-09 06:23:45 +01:00
Dynamic tabbed interfaces, as described in the [<abbr title="Web Accessibility Initiative">WAI</abbr> <abbr title="Accessible Rich Internet Applications">ARIA</abbr> Authoring Practices ](https://www.w3.org/TR/wai-aria-practices/#tabpanel ), require `role="tablist"` , `role="tab"` , `role="tabpanel"` , and additional `aria-` attributes in order to convey their structure, functionality and current state to users of assistive technologies (such as screen readers). As a best practice, we recommend using `<button>` elements for the tabs, as these are controls that trigger a dynamic change, rather than links that navigate to a new page or location.
2017-05-04 18:07:52 +02:00
2017-09-24 12:00:54 +02:00
Note that dynamic tabbed interfaces should < em > not< / em > contain dropdown menus, as this causes both usability and accessibility issues. From a usability perspective, the fact that the currently displayed tab's trigger element is not immediately visible (as it's inside the closed dropdown menu) can cause confusion. From an accessibility point of view, there is currently no sensible way to map this sort of construct to a standard WAI ARIA pattern, meaning that it cannot be easily made understandable to users of assistive technologies.
2019-06-06 08:04:48 +02:00
< div class = "bd-example" >
< ul class = "nav nav-tabs mb-3" id = "myTab" role = "tablist" >
2020-03-28 08:51:24 +01:00
< li class = "nav-item" role = "presentation" >
2021-02-09 06:23:45 +01:00
< button class = "nav-link active" id = "home-tab" data-bs-toggle = "tab" data-bs-target = "#home" type = "button" role = "tab" aria-controls = "home" aria-selected = "true" > Home< / button >
2015-04-18 05:59:22 +02:00
< / li >
2020-03-28 08:51:24 +01:00
< li class = "nav-item" role = "presentation" >
2021-02-09 06:23:45 +01:00
< button class = "nav-link" id = "profile-tab" data-bs-toggle = "tab" data-bs-target = "#profile" type = "button" role = "tab" aria-controls = "profile" aria-selected = "false" > Profile< / button >
2015-04-18 05:59:22 +02:00
< / li >
2020-03-28 08:51:24 +01:00
< li class = "nav-item" role = "presentation" >
2021-02-09 06:23:45 +01:00
< button class = "nav-link" id = "contact-tab" data-bs-toggle = "tab" data-bs-target = "#contact" type = "button" role = "tab" aria-controls = "contact" aria-selected = "false" > Contact< / button >
2015-04-18 05:59:22 +02:00
< / li >
< / ul >
2015-11-04 00:58:19 +01:00
< div class = "tab-content" id = "myTabContent" >
2017-04-02 11:21:04 +02:00
< div class = "tab-pane fade show active" id = "home" role = "tabpanel" aria-labelledby = "home-tab" >
2021-05-05 04:31:37 +02:00
< p > < strong > This is some placeholder content the Home tab's associated content.< / strong > Clicking another tab will toggle the visibility of this one for the next. The tab JavaScript swaps classes to control the content visibility and styling. You can use it with tabs, pills, and any other < code > .nav< / code > -powered navigation.< / p >
2015-04-18 05:59:22 +02:00
< / div >
2017-04-02 11:21:04 +02:00
< div class = "tab-pane fade" id = "profile" role = "tabpanel" aria-labelledby = "profile-tab" >
2021-05-05 04:31:37 +02:00
< p > < strong > This is some placeholder content the Profile tab's associated content.< / strong > Clicking another tab will toggle the visibility of this one for the next. The tab JavaScript swaps classes to control the content visibility and styling. You can use it with tabs, pills, and any other < code > .nav< / code > -powered navigation.< / p >
2015-04-18 05:59:22 +02:00
< / div >
2017-09-24 12:00:54 +02:00
< div class = "tab-pane fade" id = "contact" role = "tabpanel" aria-labelledby = "contact-tab" >
2021-05-05 04:31:37 +02:00
< p > < strong > This is some placeholder content the Contact tab's associated content.< / strong > Clicking another tab will toggle the visibility of this one for the next. The tab JavaScript swaps classes to control the content visibility and styling. You can use it with tabs, pills, and any other < code > .nav< / code > -powered navigation.< / p >
2015-04-18 05:59:22 +02:00
< / div >
< / div >
< / div >
2020-10-19 11:56:49 +02:00
```html
2017-04-02 11:21:04 +02:00
< ul class = "nav nav-tabs" id = "myTab" role = "tablist" >
2020-03-28 08:51:24 +01:00
< li class = "nav-item" role = "presentation" >
2021-02-09 06:23:45 +01:00
< button class = "nav-link active" id = "home-tab" data-bs-toggle = "tab" data-bs-target = "#home" type = "button" role = "tab" aria-controls = "home" aria-selected = "true" > Home< / button >
2017-04-02 11:21:04 +02:00
< / li >
2020-03-28 08:51:24 +01:00
< li class = "nav-item" role = "presentation" >
2021-02-09 06:23:45 +01:00
< button class = "nav-link" id = "profile-tab" data-bs-toggle = "tab" data-bs-target = "#profile" type = "button" role = "tab" aria-controls = "profile" aria-selected = "false" > Profile< / button >
2017-04-02 11:21:04 +02:00
< / li >
2020-03-28 08:51:24 +01:00
< li class = "nav-item" role = "presentation" >
2021-02-09 06:23:45 +01:00
< button class = "nav-link" id = "contact-tab" data-bs-toggle = "tab" data-bs-target = "#contact" type = "button" role = "tab" aria-controls = "contact" aria-selected = "false" > Contact< / button >
2017-04-02 11:21:04 +02:00
< / li >
< / ul >
< div class = "tab-content" id = "myTabContent" >
< div class = "tab-pane fade show active" id = "home" role = "tabpanel" aria-labelledby = "home-tab" > ...< / div >
< div class = "tab-pane fade" id = "profile" role = "tabpanel" aria-labelledby = "profile-tab" > ...< / div >
2017-09-24 12:00:54 +02:00
< div class = "tab-pane fade" id = "contact" role = "tabpanel" aria-labelledby = "contact-tab" > ...< / div >
2017-04-02 11:21:04 +02:00
< / div >
2020-10-19 11:56:49 +02:00
```
2017-04-02 11:21:04 +02:00
2018-01-23 07:04:36 +01:00
To help fit your needs, this works with `<ul>` -based markup, as shown above, or with any arbitrary "roll your own" markup. Note that if you're using `<nav>` , you shouldn't add `role="tablist"` directly to it, as this would override the element's native role as a navigation landmark. Instead, switch to an alternative element (in the example below, a simple `<div>` ) and wrap the `<nav>` around it.
2017-04-02 11:21:04 +02:00
2019-06-06 08:04:48 +02:00
< div class = "bd-example" >
2017-10-31 19:27:35 +01:00
< nav >
2019-06-06 08:04:48 +02:00
< div class = "nav nav-tabs mb-3" id = "nav-tab" role = "tablist" >
2021-02-09 06:23:45 +01:00
< button class = "nav-link active" id = "nav-home-tab" data-bs-toggle = "tab" data-bs-target = "#nav-home" type = "button" role = "tab" aria-controls = "nav-home" aria-selected = "true" > Home< / button >
< button class = "nav-link" id = "nav-profile-tab" data-bs-toggle = "tab" data-bs-target = "#nav-profile" type = "button" role = "tab" aria-controls = "nav-profile" aria-selected = "false" > Profile< / button >
< button class = "nav-link" id = "nav-contact-tab" data-bs-toggle = "tab" data-bs-target = "#nav-contact" type = "button" role = "tab" aria-controls = "nav-contact" aria-selected = "false" > Contact< / button >
2017-10-31 19:27:35 +01:00
< / div >
2017-04-08 22:58:20 +02:00
< / nav >
2017-04-02 11:21:04 +02:00
< div class = "tab-content" id = "nav-tabContent" >
< div class = "tab-pane fade show active" id = "nav-home" role = "tabpanel" aria-labelledby = "nav-home-tab" >
2021-05-05 04:31:37 +02:00
< p > < strong > This is some placeholder content the Home tab's associated content.< / strong > Clicking another tab will toggle the visibility of this one for the next. The tab JavaScript swaps classes to control the content visibility and styling. You can use it with tabs, pills, and any other < code > .nav< / code > -powered navigation.< / p >
2017-04-02 11:21:04 +02:00
< / div >
< div class = "tab-pane fade" id = "nav-profile" role = "tabpanel" aria-labelledby = "nav-profile-tab" >
2021-05-05 04:31:37 +02:00
< p > < strong > This is some placeholder content the Profile tab's associated content.< / strong > Clicking another tab will toggle the visibility of this one for the next. The tab JavaScript swaps classes to control the content visibility and styling. You can use it with tabs, pills, and any other < code > .nav< / code > -powered navigation.< / p >
2017-04-02 11:21:04 +02:00
< / div >
2017-09-24 12:00:54 +02:00
< div class = "tab-pane fade" id = "nav-contact" role = "tabpanel" aria-labelledby = "nav-contact-tab" >
2021-05-05 04:31:37 +02:00
< p > < strong > This is some placeholder content the Contact tab's associated content.< / strong > Clicking another tab will toggle the visibility of this one for the next. The tab JavaScript swaps classes to control the content visibility and styling. You can use it with tabs, pills, and any other < code > .nav< / code > -powered navigation.< / p >
2017-04-02 11:21:04 +02:00
< / div >
< / div >
< / div >
2020-10-19 11:56:49 +02:00
```html
2017-10-31 19:27:35 +01:00
< nav >
< div class = "nav nav-tabs" id = "nav-tab" role = "tablist" >
2021-02-09 06:23:45 +01:00
< button class = "nav-link active" id = "nav-home-tab" data-bs-toggle = "tab" data-bs-target = "#nav-home" type = "button" role = "tab" aria-controls = "nav-home" aria-selected = "true" > Home< / button >
< button class = "nav-link" id = "nav-profile-tab" data-bs-toggle = "tab" data-bs-target = "#nav-profile" type = "button" role = "tab" aria-controls = "nav-profile" aria-selected = "false" > Profile< / button >
< button class = "nav-link" id = "nav-contact-tab" data-bs-toggle = "tab" data-bs-target = "#nav-contact" type = "button" role = "tab" aria-controls = "nav-contact" aria-selected = "false" > Contact< / button >
2017-10-31 19:27:35 +01:00
< / div >
2017-04-08 22:58:20 +02:00
< / nav >
2017-04-02 11:21:04 +02:00
< div class = "tab-content" id = "nav-tabContent" >
< div class = "tab-pane fade show active" id = "nav-home" role = "tabpanel" aria-labelledby = "nav-home-tab" > ...< / div >
< div class = "tab-pane fade" id = "nav-profile" role = "tabpanel" aria-labelledby = "nav-profile-tab" > ...< / div >
2017-09-24 12:00:54 +02:00
< div class = "tab-pane fade" id = "nav-contact" role = "tabpanel" aria-labelledby = "nav-contact-tab" > ...< / div >
2017-04-02 11:21:04 +02:00
< / div >
2020-10-19 11:56:49 +02:00
```
2017-04-02 11:21:04 +02:00
The tabs plugin also works with pills.
2019-06-06 08:04:48 +02:00
< div class = "bd-example" >
2017-04-02 11:21:04 +02:00
< ul class = "nav nav-pills mb-3" id = "pills-tab" role = "tablist" >
2020-03-28 08:51:24 +01:00
< li class = "nav-item" role = "presentation" >
2021-02-09 06:23:45 +01:00
< button class = "nav-link active" id = "pills-home-tab" data-bs-toggle = "pill" data-bs-target = "#pills-home" type = "button" role = "tab" aria-controls = "pills-home" aria-selected = "true" > Home< / button >
2017-04-02 11:21:04 +02:00
< / li >
2020-03-28 08:51:24 +01:00
< li class = "nav-item" role = "presentation" >
2021-02-09 06:23:45 +01:00
< button class = "nav-link" id = "pills-profile-tab" data-bs-toggle = "pill" data-bs-target = "#pills-profile" type = "button" role = "tab" aria-controls = "pills-profile" aria-selected = "false" > Profile< / button >
2017-04-02 11:21:04 +02:00
< / li >
2020-03-28 08:51:24 +01:00
< li class = "nav-item" role = "presentation" >
2021-02-09 06:23:45 +01:00
< button class = "nav-link" id = "pills-contact-tab" data-bs-toggle = "pill" data-bs-target = "#pills-contact" type = "button" role = "tab" aria-controls = "pills-contact" aria-selected = "false" > Contact< / button >
2017-04-02 11:21:04 +02:00
< / li >
< / ul >
< div class = "tab-content" id = "pills-tabContent" >
< div class = "tab-pane fade show active" id = "pills-home" role = "tabpanel" aria-labelledby = "pills-home-tab" >
2021-05-05 04:31:37 +02:00
< p > < strong > This is some placeholder content the Home tab's associated content.< / strong > Clicking another tab will toggle the visibility of this one for the next. The tab JavaScript swaps classes to control the content visibility and styling. You can use it with tabs, pills, and any other < code > .nav< / code > -powered navigation.< / p >
2017-04-02 11:21:04 +02:00
< / div >
< div class = "tab-pane fade" id = "pills-profile" role = "tabpanel" aria-labelledby = "pills-profile-tab" >
2021-05-05 04:31:37 +02:00
< p > < strong > This is some placeholder content the Profile tab's associated content.< / strong > Clicking another tab will toggle the visibility of this one for the next. The tab JavaScript swaps classes to control the content visibility and styling. You can use it with tabs, pills, and any other < code > .nav< / code > -powered navigation.< / p >
2017-04-02 11:21:04 +02:00
< / div >
2017-09-24 12:00:54 +02:00
< div class = "tab-pane fade" id = "pills-contact" role = "tabpanel" aria-labelledby = "pills-contact-tab" >
2021-05-05 04:31:37 +02:00
< p > < strong > This is some placeholder content the Contact tab's associated content.< / strong > Clicking another tab will toggle the visibility of this one for the next. The tab JavaScript swaps classes to control the content visibility and styling. You can use it with tabs, pills, and any other < code > .nav< / code > -powered navigation.< / p >
2017-04-02 11:21:04 +02:00
< / div >
< / div >
< / div >
2020-10-19 11:56:49 +02:00
```html
2017-04-02 11:21:04 +02:00
< ul class = "nav nav-pills mb-3" id = "pills-tab" role = "tablist" >
2020-03-28 08:51:24 +01:00
< li class = "nav-item" role = "presentation" >
2021-02-09 06:23:45 +01:00
< button class = "nav-link active" id = "pills-home-tab" data-bs-toggle = "pill" data-bs-target = "#pills-home" type = "button" role = "tab" aria-controls = "pills-home" aria-selected = "true" > Home< / button >
2017-04-02 11:21:04 +02:00
< / li >
2020-03-28 08:51:24 +01:00
< li class = "nav-item" role = "presentation" >
2021-02-09 06:23:45 +01:00
< button class = "nav-link" id = "pills-profile-tab" data-bs-toggle = "pill" data-bs-target = "#pills-profile" type = "button" role = "tab" aria-controls = "pills-profile" aria-selected = "false" > Profile< / button >
2017-04-02 11:21:04 +02:00
< / li >
2020-03-28 08:51:24 +01:00
< li class = "nav-item" role = "presentation" >
2021-02-09 06:23:45 +01:00
< button class = "nav-link" id = "pills-contact-tab" data-bs-toggle = "pill" data-bs-target = "#pills-contact" type = "button" role = "tab" aria-controls = "pills-contact" aria-selected = "false" > Contact< / button >
2017-04-02 11:21:04 +02:00
< / li >
< / ul >
< div class = "tab-content" id = "pills-tabContent" >
< div class = "tab-pane fade show active" id = "pills-home" role = "tabpanel" aria-labelledby = "pills-home-tab" > ...< / div >
< div class = "tab-pane fade" id = "pills-profile" role = "tabpanel" aria-labelledby = "pills-profile-tab" > ...< / div >
2017-09-24 12:00:54 +02:00
< div class = "tab-pane fade" id = "pills-contact" role = "tabpanel" aria-labelledby = "pills-contact-tab" > ...< / div >
2017-04-02 11:21:04 +02:00
< / div >
2020-10-19 11:56:49 +02:00
```
2017-04-02 11:21:04 +02:00
And with vertical pills.
2019-06-06 08:04:48 +02:00
< div class = "bd-example" >
2020-09-29 09:11:46 +02:00
< div class = "d-flex align-items-start" >
2020-06-09 15:44:20 +02:00
< div class = "nav flex-column nav-pills me-3" id = "v-pills-tab" role = "tablist" aria-orientation = "vertical" >
2021-02-09 06:23:45 +01:00
< button class = "nav-link active" id = "v-pills-home-tab" data-bs-toggle = "pill" data-bs-target = "#v-pills-home" type = "button" role = "tab" aria-controls = "v-pills-home" aria-selected = "true" > Home< / button >
< button class = "nav-link" id = "v-pills-profile-tab" data-bs-toggle = "pill" data-bs-target = "#v-pills-profile" type = "button" role = "tab" aria-controls = "v-pills-profile" aria-selected = "false" > Profile< / button >
< button class = "nav-link" id = "v-pills-messages-tab" data-bs-toggle = "pill" data-bs-target = "#v-pills-messages" type = "button" role = "tab" aria-controls = "v-pills-messages" aria-selected = "false" > Messages< / button >
< button class = "nav-link" id = "v-pills-settings-tab" data-bs-toggle = "pill" data-bs-target = "#v-pills-settings" type = "button" role = "tab" aria-controls = "v-pills-settings" aria-selected = "false" > Settings< / button >
2017-04-02 11:21:04 +02:00
< / div >
2020-09-29 09:11:46 +02:00
< div class = "tab-content" id = "v-pills-tabContent" >
< div class = "tab-pane fade show active" id = "v-pills-home" role = "tabpanel" aria-labelledby = "v-pills-home-tab" >
2021-05-05 04:31:37 +02:00
< p > < strong > This is some placeholder content the Home tab's associated content.< / strong > Clicking another tab will toggle the visibility of this one for the next. The tab JavaScript swaps classes to control the content visibility and styling. You can use it with tabs, pills, and any other < code > .nav< / code > -powered navigation.< / p >
2020-09-29 09:11:46 +02:00
< / div >
< div class = "tab-pane fade" id = "v-pills-profile" role = "tabpanel" aria-labelledby = "v-pills-profile-tab" >
2021-05-05 04:31:37 +02:00
< p > < strong > This is some placeholder content the Profile tab's associated content.< / strong > Clicking another tab will toggle the visibility of this one for the next. The tab JavaScript swaps classes to control the content visibility and styling. You can use it with tabs, pills, and any other < code > .nav< / code > -powered navigation.< / p >
2020-09-29 09:11:46 +02:00
< / div >
< div class = "tab-pane fade" id = "v-pills-messages" role = "tabpanel" aria-labelledby = "v-pills-messages-tab" >
2021-05-05 04:31:37 +02:00
< p > < strong > This is some placeholder content the Messages tab's associated content.< / strong > Clicking another tab will toggle the visibility of this one for the next. The tab JavaScript swaps classes to control the content visibility and styling. You can use it with tabs, pills, and any other < code > .nav< / code > -powered navigation.< / p >
2020-09-29 09:11:46 +02:00
< / div >
< div class = "tab-pane fade" id = "v-pills-settings" role = "tabpanel" aria-labelledby = "v-pills-settings-tab" >
2021-05-05 04:31:37 +02:00
< p > < strong > This is some placeholder content the Settings tab's associated content.< / strong > Clicking another tab will toggle the visibility of this one for the next. The tab JavaScript swaps classes to control the content visibility and styling. You can use it with tabs, pills, and any other < code > .nav< / code > -powered navigation.< / p >
2017-04-02 11:21:04 +02:00
< / div >
< / div >
< / div >
< / div >
2020-10-19 11:56:49 +02:00
```html
2020-09-29 09:11:46 +02:00
< div class = "d-flex align-items-start" >
2020-06-09 15:44:20 +02:00
< div class = "nav flex-column nav-pills me-3" id = "v-pills-tab" role = "tablist" aria-orientation = "vertical" >
2021-02-09 06:23:45 +01:00
< button class = "nav-link active" id = "v-pills-home-tab" data-bs-toggle = "pill" data-bs-target = "#v-pills-home" type = "button" role = "tab" aria-controls = "v-pills-home" aria-selected = "true" > Home< / button >
2021-02-15 07:45:34 +01:00
< button class = "nav-link" id = "v-pills-profile-tab" data-bs-toggle = "pill" data-bs-target = "#v-pills-profile" type = "button" role = "tab" aria-controls = "v-pills-profile" aria-selected = "false" > Profile< / button >
2021-02-09 06:23:45 +01:00
< button class = "nav-link" id = "v-pills-messages-tab" data-bs-toggle = "pill" data-bs-target = "#v-pills-messages" type = "button" role = "tab" aria-controls = "v-pills-messages" aria-selected = "false" > Messages< / button >
< button class = "nav-link" id = "v-pills-settings-tab" data-bs-toggle = "pill" data-bs-target = "#v-pills-settings" type = "button" role = "tab" aria-controls = "v-pills-settings" aria-selected = "false" > Settings< / button >
2018-03-16 12:38:30 +01:00
< / div >
2020-09-29 09:11:46 +02:00
< div class = "tab-content" id = "v-pills-tabContent" >
< div class = "tab-pane fade show active" id = "v-pills-home" role = "tabpanel" aria-labelledby = "v-pills-home-tab" > ...< / div >
< div class = "tab-pane fade" id = "v-pills-profile" role = "tabpanel" aria-labelledby = "v-pills-profile-tab" > ...< / div >
< div class = "tab-pane fade" id = "v-pills-messages" role = "tabpanel" aria-labelledby = "v-pills-messages-tab" > ...< / div >
< div class = "tab-pane fade" id = "v-pills-settings" role = "tabpanel" aria-labelledby = "v-pills-settings-tab" > ...< / div >
2018-03-16 12:38:30 +01:00
< / div >
2017-04-02 11:21:04 +02:00
< / div >
2020-10-19 11:56:49 +02:00
```
2017-04-02 11:21:04 +02:00
2015-04-18 05:59:22 +02:00
### Using data attributes
2020-07-22 21:33:11 +02:00
You can activate a tab or pill navigation without writing any JavaScript by simply specifying `data-bs-toggle="tab"` or `data-bs-toggle="pill"` on an element. Use these data attributes on `.nav-tabs` or `.nav-pills` .
2015-04-18 05:59:22 +02:00
2020-10-19 11:56:49 +02:00
```html
2015-04-18 05:59:22 +02:00
<!-- Nav tabs -->
2017-04-02 11:21:04 +02:00
< ul class = "nav nav-tabs" id = "myTab" role = "tablist" >
2020-03-28 08:51:24 +01:00
< li class = "nav-item" role = "presentation" >
2021-02-09 06:23:45 +01:00
< button class = "nav-link active" id = "home-tab" data-bs-toggle = "tab" data-bs-target = "#home" type = "button" role = "tab" aria-controls = "home" aria-selected = "true" > Home< / button >
2015-08-13 06:12:03 +02:00
< / li >
2020-03-28 08:51:24 +01:00
< li class = "nav-item" role = "presentation" >
2021-02-09 06:23:45 +01:00
< button class = "nav-link" id = "profile-tab" data-bs-toggle = "tab" data-bs-target = "#profile" type = "button" role = "tab" aria-controls = "profile" aria-selected = "false" > Profile< / button >
2015-08-13 06:12:03 +02:00
< / li >
2020-03-28 08:51:24 +01:00
< li class = "nav-item" role = "presentation" >
2021-02-09 06:23:45 +01:00
< button class = "nav-link" id = "messages-tab" data-bs-toggle = "tab" data-bs-target = "#messages" type = "button" role = "tab" aria-controls = "messages" aria-selected = "false" > Messages< / button >
2015-08-13 06:12:03 +02:00
< / li >
2020-03-28 08:51:24 +01:00
< li class = "nav-item" role = "presentation" >
2021-02-21 07:00:03 +01:00
< button class = "nav-link" id = "settings-tab" data-bs-toggle = "tab" data-bs-target = "#settings" type = "button" role = "tab" aria-controls = "settings" aria-selected = "false" > Settings< / button >
2015-08-13 06:12:03 +02:00
< / li >
2015-04-18 05:59:22 +02:00
< / ul >
<!-- Tab panes -->
< div class = "tab-content" >
2017-09-24 12:00:54 +02:00
< div class = "tab-pane active" id = "home" role = "tabpanel" aria-labelledby = "home-tab" > ...< / div >
< div class = "tab-pane" id = "profile" role = "tabpanel" aria-labelledby = "profile-tab" > ...< / div >
< div class = "tab-pane" id = "messages" role = "tabpanel" aria-labelledby = "messages-tab" > ...< / div >
< div class = "tab-pane" id = "settings" role = "tabpanel" aria-labelledby = "settings-tab" > ...< / div >
2015-04-18 05:59:22 +02:00
< / div >
2020-10-19 11:56:49 +02:00
```
2015-04-18 05:59:22 +02:00
### Via JavaScript
Enable tabbable tabs via JavaScript (each tab needs to be activated individually):
2020-10-19 11:56:49 +02:00
```js
2021-07-16 07:50:50 +02:00
var triggerTabList = [].slice.call(document.querySelectorAll('#myTab button'))
2019-07-31 21:55:28 +02:00
triggerTabList.forEach(function (triggerEl) {
var tabTrigger = new bootstrap.Tab(triggerEl)
2020-11-21 16:00:38 +01:00
triggerEl.addEventListener('click', function (event) {
event.preventDefault()
2019-07-31 21:55:28 +02:00
tabTrigger.show()
})
2015-04-18 05:59:22 +02:00
})
2020-10-19 11:56:49 +02:00
```
2015-04-18 05:59:22 +02:00
You can activate individual tabs in several ways:
2020-10-19 11:56:49 +02:00
```js
2021-07-16 07:50:50 +02:00
var triggerEl = document.querySelector('#myTab button[data-bs-target="#profile"]')
2019-07-31 21:55:28 +02:00
bootstrap.Tab.getInstance(triggerEl).show() // Select tab by name
2021-07-16 07:50:50 +02:00
var triggerFirstTabEl = document.querySelector('#myTab li:first-child button')
2019-07-31 21:55:28 +02:00
bootstrap.Tab.getInstance(triggerFirstTabEl).show() // Select first tab
2020-10-19 11:56:49 +02:00
```
2015-04-18 05:59:22 +02:00
### Fade effect
2016-10-28 00:50:23 +02:00
To make tabs fade in, add `.fade` to each `.tab-pane` . The first tab pane must also have `.show` to make the initial content visible.
2015-04-18 05:59:22 +02:00
2020-10-19 11:56:49 +02:00
```html
2015-04-18 05:59:22 +02:00
< div class = "tab-content" >
2017-09-24 12:00:54 +02:00
< div class = "tab-pane fade show active" id = "home" role = "tabpanel" aria-labelledby = "home-tab" > ...< / div >
< div class = "tab-pane fade" id = "profile" role = "tabpanel" aria-labelledby = "profile-tab" > ...< / div >
< div class = "tab-pane fade" id = "messages" role = "tabpanel" aria-labelledby = "messages-tab" > ...< / div >
< div class = "tab-pane fade" id = "settings" role = "tabpanel" aria-labelledby = "settings-tab" > ...< / div >
2015-04-18 05:59:22 +02:00
< / div >
2020-10-19 11:56:49 +02:00
```
2015-04-18 05:59:22 +02:00
### Methods
2020-10-13 15:37:21 +02:00
{{< callout danger > }}
2019-01-08 17:33:28 +01:00
{{< partial " callout-danger-async-methods . md " > }}
2020-10-13 15:37:21 +02:00
{{< / callout > }}
2017-03-28 23:43:16 +02:00
2019-07-31 21:55:28 +02:00
#### constructor
2015-04-18 05:59:22 +02:00
2021-02-09 06:23:45 +01:00
Activates a tab element and content container. Tab should have either a `data-bs-target` or, if using a link, an `href` attribute, targeting a container node in the DOM.
2015-04-18 05:59:22 +02:00
2020-10-19 11:56:49 +02:00
```html
2015-11-04 00:58:19 +01:00
< ul class = "nav nav-tabs" id = "myTab" role = "tablist" >
2020-03-28 08:51:24 +01:00
< li class = "nav-item" role = "presentation" >
2021-02-09 06:23:45 +01:00
< button class = "nav-link active" id = "home-tab" data-bs-toggle = "tab" data-bs-target = "#home" type = "button" role = "tab" aria-controls = "home" aria-selected = "true" > Home< / button >
2015-04-18 05:59:22 +02:00
< / li >
2020-03-28 08:51:24 +01:00
< li class = "nav-item" role = "presentation" >
2021-02-09 06:23:45 +01:00
< button class = "nav-link" id = "profile-tab" data-bs-toggle = "tab" data-bs-target = "#profile" type = "button" role = "tab" aria-controls = "profile" aria-selected = "false" > Profile< / button >
2015-04-18 05:59:22 +02:00
< / li >
2020-03-28 08:51:24 +01:00
< li class = "nav-item" role = "presentation" >
2021-02-09 06:23:45 +01:00
< button class = "nav-link" id = "messages-tab" data-bs-toggle = "tab" data-bs-target = "#messages" type = "button" role = "tab" aria-controls = "messages" aria-selected = "false" > Messages< / button >
2015-04-18 05:59:22 +02:00
< / li >
2020-03-28 08:51:24 +01:00
< li class = "nav-item" role = "presentation" >
2021-02-09 06:23:45 +01:00
< button class = "nav-link" id = "settings-tab" data-bs-toggle = "tab" data-bs-target = "#settings" type = "button" role = "tab" aria-controls = "settings" aria-selected = "false" > Settings< / button >
2015-04-18 05:59:22 +02:00
< / li >
< / ul >
< div class = "tab-content" >
2017-09-24 12:00:54 +02:00
< div class = "tab-pane active" id = "home" role = "tabpanel" aria-labelledby = "home-tab" > ...< / div >
< div class = "tab-pane" id = "profile" role = "tabpanel" aria-labelledby = "profile-tab" > ...< / div >
< div class = "tab-pane" id = "messages" role = "tabpanel" aria-labelledby = "messages-tab" > ...< / div >
< div class = "tab-pane" id = "settings" role = "tabpanel" aria-labelledby = "settings-tab" > ...< / div >
2015-04-18 05:59:22 +02:00
< / div >
< script >
2021-07-16 07:50:50 +02:00
var firstTabEl = document.querySelector('#myTab li:last-child button')
2019-07-31 21:55:28 +02:00
var firstTab = new bootstrap.Tab(firstTabEl)
firstTab.show()
2015-04-18 05:59:22 +02:00
< / script >
2020-10-19 11:56:49 +02:00
```
2015-04-18 05:59:22 +02:00
2019-07-31 21:55:28 +02:00
#### show
2015-12-27 21:11:17 +01:00
2016-01-07 00:02:58 +01:00
Selects the given tab and shows its associated pane. Any other tab that was previously selected becomes unselected and its associated pane is hidden. **Returns to the caller before the tab pane has actually been shown** (i.e. before the `shown.bs.tab` event occurs).
2015-12-27 21:11:17 +01:00
2020-10-19 11:56:49 +02:00
```js
2019-07-31 21:55:28 +02:00
var someTabTriggerEl = document.querySelector('#someTabTrigger')
var tab = new bootstrap.Tab(someTabTriggerEl)
tab.show()
2020-10-19 11:56:49 +02:00
```
2015-12-27 21:11:17 +01:00
2019-07-31 21:55:28 +02:00
#### dispose
2017-10-16 16:51:42 +02:00
Destroys an element's tab.
2019-07-31 21:55:28 +02:00
#### getInstance
*Static* method which allows you to get the tab instance associated with a DOM element
2020-10-19 11:56:49 +02:00
```js
2019-07-31 21:55:28 +02:00
var triggerEl = document.querySelector('#trigger')
var tab = bootstrap.Tab.getInstance(triggerEl) // Returns a Bootstrap tab instance
2020-10-19 11:56:49 +02:00
```
2021-06-03 17:53:27 +02:00
#### getOrCreateInstance
*Static* method which allows you to get the tab instance associated with a DOM element, or create a new one in case it wasn't initialised
```js
var triggerEl = document.querySelector('#trigger')
var tab = bootstrap.Tab.getOrCreateInstance(triggerEl) // Returns a Bootstrap tab instance
```
2019-07-31 21:55:28 +02:00
2015-04-18 05:59:22 +02:00
### Events
When showing a new tab, the events fire in the following order:
1. `hide.bs.tab` (on the current active tab)
2. `show.bs.tab` (on the to-be-shown tab)
3. `hidden.bs.tab` (on the previous active tab, the same one as for the `hide.bs.tab` event)
4. `shown.bs.tab` (on the newly-active just-shown tab, the same one as for the `show.bs.tab` event)
If no tab was already active, then the `hide.bs.tab` and `hidden.bs.tab` events will not be fired.
v5: Forms update (#28450)
* Initial spike of consolidated form checks
* Stub out forms rearrangement
- Prepping to drop non-custom file and range inputs
- Prepping to merge custom and native checks and radios (with switches)
- Prepping to merge custom select with form select
- Moving docs arround so forms has it's own area given volume of CSS
* Move input group Sass file to forms subdir
* Start to split and move the docs around
* Simpler imports
* Copyediting
* delete overview file
* Remove commented out code
* remove the custom-forms import
* rewrite flex-check as form-check, replace all custom properties
* Remove old forms doc
* stub out new subpage link section
* update migration guide
* Update nav, forms overview in page nav, and descriptions
* fix check bg position
* fix margin-top calculation
* rename .custom-select to .form-select
* Update validation styles for new checks
* add some vertical margin, fix inline checks
* fix docs examples
* better way to do this contents stuff, redo the toc while i'm at it
* page restyle for docs while here
* un-callout that, edit text
* redo padding on toc
* fix toc
* start to cleanup checks docs
* Rewrite Markdown tables into HTML
* Redesign tables, redo their docs
* Replace Open Iconic icons with custom Bootstrap icons
* Redesign the docs navbar, add a subheader, redo the sidebar
* Redesign docs homepage a bit
* Simplify table style overrides for docs tables
* Simplify docs typography for page titles and reading line length
* Stub out icons page
* Part of sidebar update, remove migration from nav.yml
* Move toc CSS to separate partial
* Change appearance of overview page
* fix sidebar arrow direction
* Add footer to docs layout
* Update descriptions
* Drop the .form-group class for margin utilities
* Remove lingering form-group-margin-bottom var
* improve footer spacing
* add headings to range page
* uncomment form range css
* Rename .custom-range to .form-range
* Drop unused docs var
* Uncomment the comment
* Remove unused variable
* Fix radio image sizing
* Reboot update: reset horizontal ul and ol padding
* de-dupe IDs
* tweak toc styles
* nvm, fix dropdown versions stuff
* remove sidebar nav toggle for now
* broken html
* fix more broken html, move css
* scss linting
* comment out broken helper docs
* scope styles
* scope styles
* Fixes #25540 and fixes #26407 for v5 only
* Update sidebar once more
* Match new sidenav order
* fix syntax error
* Rename custom-file to form-file, update paths, update migration docs for previous changes in #28696
* rename back
* fix size and alignment
* rename that back too
2019-07-12 23:52:33 +02:00
< table class = "table" >
2015-08-28 16:35:11 +02:00
< thead >
2017-04-28 00:57:10 +02:00
< tr >
v5: Forms update (#28450)
* Initial spike of consolidated form checks
* Stub out forms rearrangement
- Prepping to drop non-custom file and range inputs
- Prepping to merge custom and native checks and radios (with switches)
- Prepping to merge custom select with form select
- Moving docs arround so forms has it's own area given volume of CSS
* Move input group Sass file to forms subdir
* Start to split and move the docs around
* Simpler imports
* Copyediting
* delete overview file
* Remove commented out code
* remove the custom-forms import
* rewrite flex-check as form-check, replace all custom properties
* Remove old forms doc
* stub out new subpage link section
* update migration guide
* Update nav, forms overview in page nav, and descriptions
* fix check bg position
* fix margin-top calculation
* rename .custom-select to .form-select
* Update validation styles for new checks
* add some vertical margin, fix inline checks
* fix docs examples
* better way to do this contents stuff, redo the toc while i'm at it
* page restyle for docs while here
* un-callout that, edit text
* redo padding on toc
* fix toc
* start to cleanup checks docs
* Rewrite Markdown tables into HTML
* Redesign tables, redo their docs
* Replace Open Iconic icons with custom Bootstrap icons
* Redesign the docs navbar, add a subheader, redo the sidebar
* Redesign docs homepage a bit
* Simplify table style overrides for docs tables
* Simplify docs typography for page titles and reading line length
* Stub out icons page
* Part of sidebar update, remove migration from nav.yml
* Move toc CSS to separate partial
* Change appearance of overview page
* fix sidebar arrow direction
* Add footer to docs layout
* Update descriptions
* Drop the .form-group class for margin utilities
* Remove lingering form-group-margin-bottom var
* improve footer spacing
* add headings to range page
* uncomment form range css
* Rename .custom-range to .form-range
* Drop unused docs var
* Uncomment the comment
* Remove unused variable
* Fix radio image sizing
* Reboot update: reset horizontal ul and ol padding
* de-dupe IDs
* tweak toc styles
* nvm, fix dropdown versions stuff
* remove sidebar nav toggle for now
* broken html
* fix more broken html, move css
* scss linting
* comment out broken helper docs
* scope styles
* scope styles
* Fixes #25540 and fixes #26407 for v5 only
* Update sidebar once more
* Match new sidenav order
* fix syntax error
* Rename custom-file to form-file, update paths, update migration docs for previous changes in #28696
* rename back
* fix size and alignment
* rename that back too
2019-07-12 23:52:33 +02:00
< th style = "width: 150px;" > Event type< / th >
2017-04-28 00:57:10 +02:00
< th > Description< / th >
< / tr >
2015-08-28 16:35:11 +02:00
< / thead >
< tbody >
< tr >
2020-06-27 13:28:21 +02:00
< td > < code > show.bs.tab< / code > < / td >
2015-08-28 16:35:11 +02:00
< td > This event fires on tab show, but before the new tab has been shown. Use < code > event.target< / code > and < code > event.relatedTarget< / code > to target the active tab and the previous active tab (if available) respectively.< / td >
2017-04-28 00:57:10 +02:00
< / tr >
< tr >
2020-06-27 13:28:21 +02:00
< td > < code > shown.bs.tab< / code > < / td >
2015-08-28 16:35:11 +02:00
< td > This event fires on tab show after a tab has been shown. Use < code > event.target< / code > and < code > event.relatedTarget< / code > to target the active tab and the previous active tab (if available) respectively.< / td >
< / tr >
< tr >
2020-06-27 13:28:21 +02:00
< td > < code > hide.bs.tab< / code > < / td >
2015-08-28 16:35:11 +02:00
< td > This event fires when a new tab is to be shown (and thus the previous active tab is to be hidden). Use < code > event.target< / code > and < code > event.relatedTarget< / code > to target the current active tab and the new soon-to-be-active tab, respectively.< / td >
< / tr >
< tr >
2020-06-27 13:28:21 +02:00
< td > < code > hidden.bs.tab< / code > < / td >
2015-08-28 16:35:11 +02:00
< td > This event fires after a new tab is shown (and thus the previous active tab is hidden). Use < code > event.target< / code > and < code > event.relatedTarget< / code > to target the previous active tab and the new active tab, respectively.< / td >
< / tr >
< / tbody >
< / table >
2015-04-18 05:59:22 +02:00
2020-10-19 11:56:49 +02:00
```js
2021-02-09 06:23:45 +01:00
var tabEl = document.querySelector('button[data-bs-toggle="tab"]')
2020-11-21 16:00:38 +01:00
tabEl.addEventListener('shown.bs.tab', function (event) {
event.target // newly activated tab
event.relatedTarget // previous active tab
2015-04-18 05:59:22 +02:00
})
2020-10-19 11:56:49 +02:00
```