Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

Why is my Bootstrap 5 NavBar brand aligned all the way left?

I have the following HTML:

<!DOCTYPE html>
<html>

<head>
  <title>Bootstrap Demo</title>

  <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-iYQeCzEYFbKjA/T2uDLTpkwGzCiq6soy8tYaI1GyVh/UjpbCx/TYkiZhlZB6+fzT" crossorigin="anonymous">
</head>

<body>
  <div class="container">
    <nav class="navbar navbar-expand-sm navbar-dark" style="background-color: green;">
      <a class="navbar-brand" href="#">My To Do's</a>
      <div class="collapse navbar-collapse">
        <div class="navbar-nav">
          <a class="nav-item nav-link" routerLink="">Checklist</a>
          <a class="nav-item nav-link" routerLink="all-tasks">All To Dos</a>
          <a class="nav-item nav-link" routerLink="about">About</a>
        </div>
      </div>
    </nav>
  </div>
</body>

</html>

And when I view it, the nav-brand is munched up against the left.

No padding!

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

Am I doing something wrong, or do I have to do the padding myself?

>Solution :

I believe this is because the navbar class, which adds padding, defaults to 0 for "x padding":

/* bootstrap.css */
.navbar {
    --bs-navbar-padding-x: 0.5rem
}

To fix that, give the variable a value:

.navbar {
    /* What the docs use */
    --bs-navbar-padding-x: 0.5rem;
}
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading