Center content in responsive bootstrap navbar

后端 未结 11 2177
自闭症患者
自闭症患者 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条回答
  •  长情又很酷
    2020-11-22 08:59

    Update 2020...

    Bootstrap 4

    Centering Navbar content is easier is Bootstrap 4, and you can see many centering scenarios explained here: https://stackoverflow.com/a/20362024/171456

    Bootstrap 3

    Another scenario that doesn't seem to have been answered yet is centering both the brand and navbar links. Here's a solution..

    .navbar .navbar-header,
    .navbar-collapse {
        float:none;
        display:inline-block;
        vertical-align: top;
    }
    
    @media (max-width: 768px) {
        .navbar-collapse  {
            display: block;
        }
    }
    

    http://codeply.com/go/1lrdvNH9GI

    Also see: Bootstrap NavBar with left, center or right aligned items

提交回复
热议问题