Center the nav in Twitter Bootstrap

前端 未结 8 2114
隐瞒了意图╮
隐瞒了意图╮ 2020-12-07 16:00

I want to be able to center the nav dead middle of a page and have it stayed centered in different resolutions. I don\'t want to use offsets to push it over or margin-left a

8条回答
  •  南方客
    南方客 (楼主)
    2020-12-07 16:20

    You can make the .navbar fixed width, then set it's left and right margin to auto.

    Demo

    .navbar{
        width: 80%;
        margin: 0 auto;
    }​
    

提交回复
热议问题