navbar-fixed-top show content behind Navbar
问题 How do you prevent the content from floating behind the Navbar when scrolling? <Navbar className="navbar-form navbar-fixed-top" responsive collapseable brand='x' inverse toggleNavKey={1} onClick={this.handleMouseDown}> Or is it in: <Nav className="navigation".. Thanks 回答1: I like jmarceli's answer, but here's a simpler approach: Add a custom class to your navbar component, say, sticky-nav . Define the following CSS properties on it: .sticky-nav { position: sticky; top: 0; } This will make