Documentation and examples for Bootstrap's powerful, responsive navigation header, the navbar. Includes support for branding, navigation, and more, including support for our collapse plugin.
How it works
Here's what you need to know before getting started with the navbar:
Navbars require a wrapping .navbarwith .navbar-expand{-sm|-md|-lg|-xl}for responsive collapsing and color scheme classes.
Navbars and their contents are fluid by default. Use optional containers to limit their horizontal width.
Use our spacing and flex utility classes for controlling spacing and alignment within navbars.
Navbars are responsive by default, but you can easily modify them to change that. Responsive behavior depends on our Collapse JavaScript plugin.
Navbars are hidden by default when printing. Force them to be printed by adding .d-printto the .navbar. See the display utility class.
Ensure accessibility by using a <nav>element or, if using a more generic element such as a <div>, add a role="navigation"to every navbar to explicitly identify it as a landmark region for users of assistive technologies.
Read on for an example and list of supported sub-components.
Supported content
Navbars come with built-in support for a handful of sub-components. Choose from the following as needed:
.navbar-brandfor your company, product, or project name.
.navbar-navfor a full-height and lightweight navigation (including support for dropdowns).
.navbar-togglerfor use with our collapse plugin and other navigation toggling behaviors.
.form-inlinefor any form controls and actions.
.navbar-textfor adding vertically centered strings of text.
.collapse.navbar-collapsefor grouping and hiding navbar contents by a parent breakpoint.
Here's an example of all the sub-components included in a responsive light-themed navbar that automatically collapses at the lg(large) breakpoint.
This example uses color ( bg-light) and spacing ( my-2, my-lg-0, mr-sm-0, my-sm-0) utility classes.
brand
The .navbar-brandcan be applied to most elements, but an anchor works best as some elements might require utility classes or custom styles.
Adding images to the .navbar-brandwill likely always require custom styles or utilities to properly size. Here are some examples to demonstrate.
Nav
Navbar navigation links build on our .navoptions with their own modifier class and require the use of toggler classes for proper responsive styling. Navigation in navbars will also grow to occupy as much horizontal space as possible to keep your navbar contents securely aligned.
Active states—with .active—to indicate the current page can be applied directly to .nav-links or their immediate parent .nav-items.
And because we use classes for our navs, you can avoid the list-based approach entirely if you like.
You may also utilize dropdowns in your navbar nav. Dropdown menus require a wrapping element for positioning, so be sure to use separate and nested elements for .nav-itemand .nav-linkas shown below.
Forms
Place various form controls and components within a navbar with .form-inline.
Immediate children elements in .navbaruse flex layout and will default to justify-content: space-between. Use additional flex utilities as needed to adjust this behavior.
Input groups work, too:
Various buttons are supported as part of these navbar forms, too. This is also a great reminder that vertical alignment utilities can be used to align different sized elements.
Text
Navbars may contain bits of text with the help of .navbar-text. This class adjusts vertical alignment and horizontal spacing for strings of text.
Mix and match with other components and utilities as needed.
color schemes
Theming the navbar has never been easier thanks to the combination of theming classes and background-colorutilities. Choose from .navbar-lightfor use with light background colors, or .navbar-darkfor dark background colors. Then, customize with .bg-*utilities.
Containers
Although it's not required, you can wrap a navbar in a .containerto center it on a page or add one within to only center the contents of a fixed or static top navbar .
When the container is within your navbar, its horizontal padding is removed at breakpoints lower than your specified .navbar-expand{-sm|-md|-lg|-xl}class. This ensures we're not doubling up on padding unnecessarily on lower viewports when your navbar is collapsed.
Placement
Use our position utilities to place navbars in non-static positions. Choose from fixed to the top, fixed to the bottom, or stickied to the top (scrolls with the page until it reaches the top, then stays there). Fixed navbars use position: fixed, meaning they're pulled from the normal flow of the DOM and may require custom CSS (eg, padding-topon the <body>) to prevent overlap with other elements.
Navbars can utilize .navbar-toggler, .navbar-collapse, and .navbar-expand{-sm|-md|-lg|-xl}classes to change when their content collapses behind a button. In combination with other utilities, you can easily choose when to show or hide particular elements.
For navbars that never collapse, add the .navbar-expandclass on the navbar. For navbars that always collapse, don't add any .navbar-expandclass.
toggler
Navbar togglers are left-aligned by default, but should they follow a sibling element like a .navbar-brand, they'll automatically be aligned to the far right. Reversing your markup will reverse the placement of the toggler. Below are examples of different toggle styles.
With no .navbar-brandshown in lowest breakpoint:
With a brand name shown on the left and toggler on the right:
With a toggler on the left and brand name on the right:
external content
Sometimes you want to use the collapse plugin to trigger hidden content elsewhere on the page. Because our plugin works on the idand data-targetmatching, that's easily done!