Bootstrap 3 multiple navbars

后端 未结 2 2188
无人及你
无人及你 2021-02-20 05:46

I\'m having trouble with multiple bootstrap in Twitter Bootstrap 3. First Navbar is working ok with resizing and responsive. Second navbar doesn\'t work properly in normal reso

2条回答
  •  囚心锁ツ
    2021-02-20 06:09

    If you add the following bit of CSS (either in a style tag or a custom css file), it should fix your problem.

    @media only screen and (min-width: 768px) {
      .navbar-collapse2.collapse {
        display: block !important;
        height: auto !important;
        padding-bottom: 0px;
        overflow: visible !important;
      }
    }
    

    I pulled this code from the code in bootstrap.css for .navbar-collapse

提交回复
热议问题