How to remove this horizontal scrollbar in Bootstrap 3

后端 未结 7 1076
攒了一身酷
攒了一身酷 2020-12-04 19:05

I\'ve got this irritating horizontal scroll on my bootstrap page. Can\'t figure out what is making it behave like this or what to do about it?

JsFiddle link: http:/

7条回答
  •  心在旅途
    2020-12-04 19:52

    Writing:

    html, body {
      max-width: 100%;
      overflow-x: hidden;
    }
    

    in your CSS, is a way to solve this issue

提交回复
热议问题