Bootstrap: How to enable scroll bars?

前端 未结 5 1150
耶瑟儿~
耶瑟儿~ 2021-02-19 03:39

I use Twitter Bootstrap in one of my projects, but I have the problem that my content goes out of the browser view. Normally you see the scrollbar on the right side of the scree

5条回答
  •  后悔当初
    2021-02-19 04:33

    I found removing the "position: fixed" for the navbar resolved this problem for me:

    .navbar-fixed-top, .navbar-fixed-bottom {
        /*position: fixed;*/
        right: 0;
        left: 0;
        z-index: 1030;
        margin-bottom: 0;
    }
    

    This guy also has some more useful info: http://davidlains.com/strange-twitter-bootstrap-scrolling-issue

提交回复
热议问题