Center content in responsive bootstrap navbar

后端 未结 11 2174
自闭症患者
自闭症患者 2020-11-22 08:40

I\'m having trouble centering my content in the bootstrap navbar. I\'m using bootstrap 3. I\'ve read many posts, but the CSS or methods used will not work with my code! I\'m

11条回答
  •  猫巷女王i
    2020-11-22 09:04

    The original post was asking how to center the collapsed navbar. To center elements on the normal navbar, try this:

    .navbar-nav {
        float:none;
        margin:0 auto;
        display: block;
        text-align: center;
    }
    
    .navbar-nav > li {
        display: inline-block;
        float:none;
    }
    

提交回复
热议问题