Bootstrap Row creates horizontal scroll?

Bootstrap Row creates horizontal scroll?

This can happen for this reason: you forgot to put your row inside a div class container of container fluid. It can happen to anyone :)

A quick fix for this is to add this code into your css.
It will solve the issue.

1
2
3
4
.row{
margin:0 !important;
padding:0 !important;
}

Add a comment: