Course Content
Bootstrap 5 Alerts
0/1
Progress Bars
0/1
Spinners
0/1
Pagination
0/1
List Groups
0/1
Bootstrap 5 Scrollspy
0/1
Bootstrap
About Lesson

Navbar with Background Colors & Styling

  • .navbar-light → Light theme
  • .navbar-dark → Dark theme
  • .bg-primary / .bg-dark → Background colors

Example: Dark Navbar

HTML
<nav class="navbar navbar-dark bg-dark">
  <div class="container">
    <a class="navbar-brand" href="#">Brand</a>
  </div>
</nav>


Output:

Example: Colored Navbar

HTML
<nav class="navbar navbar-light bg-primary">
  <div class="container">
    <a class="navbar-brand text-white" href="#">Brand</a>
  </div>
</nav>

Output:

Explanation:

  • .navbar-dark with .bg-dark creates a dark theme.
  • .navbar-light with .bg-primary creates a colored navbar.