Navs and Tabs
Documentation and examples for how to use Bootstrap’s included navigation components.
<Nav>
markup is very flexible and styling is controlled via classes so you can use whatever elements you like to build your navs. By default<Nav>
and <Nav.Item>
both render <div>
s instead of<ul>
and <li>
elements respectively. This because it's possible (and common) to leave off the <Nav.Item>
's and render a <Nav.Link>
directly, which would create invalid markup by default (ul < a).
Available styles
Change the style of <Nav>
s component with modifiers and utilities. Mix and match as needed, or build your own.
Horizontal alignment
You can control the the direction and orientation of the Nav by making use of the flexbox layout utility classes. By default, navs are left-aligned, but that is easily changed to center or right-aligned.
Centered with .justify-content-center
:
Right-aligned with .justify-content-end
:
Vertical
Create stacked navs by changing the flex item direction with the .flex-column
class, or your own css. You can even use the responsive versions to stack in some viewports but not others ( e.g. .flex-sm-column
).
Tabs
Visually represent nav items as "tabs". This style pairs nicely with tabbable regions created by our Tab components.
Note: creating a vertical nav (.flex-column
) with tabs styling is unsupported by Bootstrap's default stylesheet.
Pills
An alternative visual with variant="pills"
prop
Fill and justify
Force the contents of your nav to extend the full available width. To proportionately fill the space use fill
. Notice that the nav is the entire width but each nav item is a different size.
When using a <Nav>
based navigation without as
prop, it will generate anchors in <div>
.
If you want each NavItem to be the same size use justify
.
Working with flex utilities
If you need responsive nav variations, consider using a series of flexbox utilities. 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.
JavaScript behavior ( Tabs )
Create dynamic tabbed interfaces, as described in the WAI ARIA Authoring Practices. Tabs
is a higher-level component for quickly creating a Nav
matched with a set of TabPane
s.
The tabs plugin also works with pills.
And with vertical pills.