twitter bootstrap — center brand in nav bar

前端 未结 5 1536
一向
一向 2020-12-15 11:18

Is there a way I can center the brand name in the nav-bar

My current code is like

5条回答
  •  無奈伤痛
    2020-12-15 11:43

    The above answer will not work with version 2 (responsive design):

    Instead wrap your brand inside a div:

    
    

    And redefine the .brand style in your overrides stylesheet:

    .brand
    {
        position: absolute;
        width: 100%;
        left: 0;
        text-align: center;
        margin: auto;
    }
    

提交回复
热议问题