Bootstrap Center Navbar Items

后端 未结 5 2010
独厮守ぢ
独厮守ぢ 2020-12-03 05:19

I know I can push navbar items to the left and right, but how would I center them?

text-align:center;

doesn\'t work nor any of the other th

5条回答
  •  广开言路
    2020-12-03 05:37

    You will need to modify some CSS rules for Navbar component. So add a class center to nav.navbar and the following rules:

    .navbar.center .navbar-inner {
        text-align: center;
    }
    
    .navbar.center .navbar-inner .nav {
        display:inline-block;
        float: none;
    }
    

    Working demo (Bootstrap 3.3.7)

提交回复
热议问题