How can I center Twitter-Bootstrap 3 navbar links?

前端 未结 2 1479
别那么骄傲
别那么骄傲 2020-12-06 01:56

How can I center the buttons in the jsFiddle I set up so that the buttons are equally spaced and centered within and through-out the navbar?

http://jsfiddle.net/3GQy

2条回答
  •  情书的邮戳
    2020-12-06 02:31

    Add the style

    .nav{
        text-align: center;
    }
    

    This will center the text in li.

    Check Fiddle

    These styles should be sufficient. You were trying to apply styles to to the wrong element.

    // This is being applied by the bootstrap
    // Set it to 25px instead of the default 15px
    .navbar{
        padding : 0 25px;
    }
    
    // Gave a width of 110px for each li
    // as the container is following a fixed width format
    li{
        width:110px;
    }
    

提交回复
热议问题