Bootstrap 3.3.7 “row” causing horizontal scroll bar

后端 未结 5 1488
星月不相逢
星月不相逢 2021-01-11 13:29

Ok ok, I know. This question has been asked a lot. But, so far, I have not found a working solution. I boiled my page down to nothing but this:

5条回答
  •  暖寄归人
    2021-01-11 14:02

    An easier way is to simply remove the margins on the offending row(s):

    .row {
        margin-left: 0px;
        margin-right: 0px;
    }
    

提交回复
热议问题