Bootstrap: center some navbar items

后端 未结 4 2062
情歌与酒
情歌与酒 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 20:51

    use this css actually in bootstrap li and ul are float left http://jsfiddle.net/b7whs/4/

    @import url('http://twitter.github.com/bootstrap/assets/css/bootstrap.css');
    
    .container {
        margin-top: 10px;
    }
    
    .nav.nav-center {
        display: inline-block;
        left: 0;
        right: 0;
        text-align:center;width:70%;
    }
    .nav.nav-center li,.nav.nav-center li  a{display:inline;float:none;line-height:40px;}
    

提交回复
热议问题