twitter bootstrap — center brand in nav bar

前端 未结 5 1540
一向
一向 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:36

    Couple ways to center, you might have to try each:

    Setting auto-margins:

    .brand { margin-left: auto; margin-right: auto; }
    

    Or using a known width (200px example) of an absolute positioned element:

    .brand { left: 50%; margin-left: -100px; }
    

提交回复
热议问题