<Navbar fixedTop collapseOnSelect>
                <Navbar.Header>
                    <Navbar.Brand>
                        <Link to="/">SteDylan</Link>
                    </Navbar.Brand>
                    <Navbar.Toggle />
                </Navbar.Header>
                <Navbar.Collapse>
                    <Nav pullRight>
                        <NavItem eventKey={1} componentClass={Link} to="/">
                            主页
                        </NavItem>
                        <NavItem eventKey={2} componentClass={Link} to="/">
                            关于
                        </NavItem>
                        <NavItem eventKey={3} componentClass={Link} to="/">
                            其他
                        </NavItem>
                    </Nav>
                </Navbar.Collapse>
            </Navbar>
 
 
The nav can move when i scroll. But when i click the collapse button, the items will cover the elements on the page.How can i fix them?
    
 
Comments
Post a Comment