Reputation: 39
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
Thanks!
Upvotes: 1
Views: 478
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