Bootstrap collapsed menu not pushing content down when expanded

前端 未结 10 1632
挽巷
挽巷 2020-12-10 01:00

I am using Twitter Bootstrap to play around with the responsive side of a website. I am having a problem however with the smaller widths where the collapsed menu is going ov

10条回答
  •  不知归路
    2020-12-10 01:42

    I don't know. This seems to work... (kind of a hack though).

    .navbar-fixed-top {
      top: -70px; /* you'll have to figure out the exact number here */
    }
    
    .navbar-fixed-top, .navbar-fixed-bottom {
      position: relative; /* this can also be static */
    }
    

提交回复
热议问题