Bootstrap: How to enable scroll bars?

前端 未结 5 1159
耶瑟儿~
耶瑟儿~ 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:28

    Override it with your last stylesheet.
    ( Probably your own theme stylesheet. )

    html, body {
        overflow: visible;
    }
    

提交回复
热议问题