Bootstrap: center some navbar items

后端 未结 4 2064
情歌与酒
情歌与酒 2020-12-09 20:15

I would like to have a bootstrap navbar where some nav items are left-justified, some are right justified, and some are centered in the remaining space between them.

4条回答
  •  长情又很酷
    2020-12-09 21:05

    Just found out the solution myself today.

    Just Add the CSS as:

    /* center the navbar*/
    .center.navbar .nav,
    .center.navbar .nav > li {
        float:none;
        display:inline-block;
        *display:inline; /* ie7 fix */
        *zoom:1; /* hasLayout ie7 trigger */
        vertical-align: top;
    }
    
    .center .navbar-inner {
        text-align:center;
    }
    
    .center .dropdown-menu {
        text-align: left;
    }
    

    and add center class to navbar like this

    
    

提交回复
热议问题