Nearby lessons

22 of 39

๐Ÿ“š BS5 Navbar

๐Ÿ“Œ What Is the Bootstrap 5 Navbar?

The navbar is a responsive header with brand, links, and optional form. Use .navbar, .navbar-expand-* (e.g. .navbar-expand-lg) so it collapses on small screens, .navbar-brand, .navbar-toggler, and .navbar-collapse with .navbar-nav and .nav-item / .nav-link. Requires Bootstrapโ€™s JavaScript for the toggler.

๐Ÿ“ฑ Basic Navbar (.navbar, .navbar-brand, .navbar-nav, .navbar-toggler, .navbar-collapse)

.navbar โ€“ outer wrapper. .navbar-expand-lg โ€“ full nav from 992px up; below that, show toggler. .navbar-brand โ€“ logo or site name. .navbar-toggler โ€“ hamburger button (use data-bs-toggle="collapse" and data-bs-target="#id"). .navbar-collapse โ€“ wrapper for links that collapse. .navbar-nav โ€“ list of links. .nav-item and .nav-link โ€“ each link.

๐Ÿ…ฑ๏ธ

bootstrap Designer

Live Component Playground

html Source
Loading...
Built with Bootstrap 5.3 โ€ข Enterprise Ready

๐ŸŒ™ Dark Navbar (.navbar-dark, .bg-dark)

.navbar-dark โ€“ light text for dark background. .bg-dark โ€“ dark background. Use with .navbar.

๐Ÿ…ฑ๏ธ

bootstrap Designer

Live Component Playground

html Source
Loading...
Built with Bootstrap 5.3 โ€ข Enterprise Ready

๐Ÿ“ Navbar with Form

Put a form (e.g. search) inside .navbar-collapse. Use utility classes like .d-flex, .me-auto to align form to the right.

๐Ÿ…ฑ๏ธ

bootstrap Designer

Live Component Playground

html Source
Loading...
Built with Bootstrap 5.3 โ€ข Enterprise Ready

โœ… Navbar Best Practices

  • Use .navbar-expand-lg (or -sm, -md, -xl) so the menu collapses on small screens.
  • Give .navbar-collapse a unique id and set data-bs-target on the toggler.
  • Use .navbar-dark .bg-dark or .navbar-light .bg-light for contrast.

๐Ÿง  Test Your Knowledge

3 Questions

Progress: 0 / 3
Keep Going!BS5 Carousel