tungnguyen
tungnguyen

Reputation: 39

Remove <div class="container"> between Navbar and Navbar.Header React Bootstrap

When I work with Navbar and Navbar.Header from React-Bootstrap, on Inspect I see a <div class="container"> as image bellow, I don't know why, so could you help me remove it enter image description here

Thanks!

Upvotes: 1

Views: 478

Answers (1)

Soroush Chehresa
Soroush Chehresa

Reputation: 5678

To remove container you should pas fluid prop to Navbar.

The fluid prop allows the Navbar to fluidly adjust to the page or container width, instead of at the predefined screen breakpoints.

Example:

<Navbar fluid>
  ...
</Navbar>

Upvotes: 2

Related Questions