bootstrap 3 - how do I place the brand in the center of the navbar?

后端 未结 8 1489
臣服心动
臣服心动 2020-11-30 04:27

I am using Bootstrap 3. I would like a navbar with only the brand in it. No other links or anything else. And I want the brand to be in the center. How can I accomplish t

8条回答
  •  有刺的猬
    2020-11-30 04:59

    I used two classes to achieve this and maintain responsiveness navbar-brand-left and navbar-brand-center. Keep in mind it utilises Sass / Less Bootstrap for line height, otherwise specify a hardcode px / rem height.

    HTML

    
    

    CSS

    .navbar-brand-left {
        display: inline-block;
        margin: 0;
        padding: 0;
        line-height: @navbar-height;
    }
    
    .navbar-brand-center {
        display: inline-block;
        margin: 0 auto;
        padding: 0;
        line-height: @navbar-height;
    }
    

提交回复
热议问题