How to make bootstrap 3 fluid layout without horizontal scrollbar

I also have it and while waiting on them to fix it, I added this shame css :

body { overflow-x: hidden;}

it’s an horrible alternative, but it work. I’ll be happy to remove it when they’ll have fixed the issue.

An other alternative, as pointed out in the issue, is to override .row :

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

Leave a Comment