Bootstrap 4 center navbar brand with collapse

前端 未结 4 1811
暖寄归人
暖寄归人 2021-01-13 02:24

Bootstrap 4 Alpha 6

I cant seem to figure out how to get both the right links and left link to both collapse. Right now only the right hand side link collapses.

4条回答
  •  爱一瞬间的悲伤
    2021-01-13 03:04

    Currently in alpha 6, the collapse only supports a single target..

    Update Bootstrap 4.1

    You can absolute position the brand on larger screens, and use a single collapse for the 2 navbars.

    @media (min-width: 768px) {
    .navbar-brand
        {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }
    }
    

    http://www.codeply.com/go/Sh05HDqIh1

    Also see:
    Center an element in Bootstrap 4 Navbar
    How to center nav-items in Bootstrap?

提交回复
热议问题