I've been make grid using bootstrap width 100% but right and left has a padding.
How to make partition of this image on grid using bootstrap width 100% ?
I've been make grid using bootstrap width 100% but right and left has a padding.
How to make partition of this image on grid using bootstrap width 100% ?
By default "row"" class having padding left and padfing right.please remove padding and add "text-center" class to the div.
Duplicate? Remove padding from columns in Bootstrap 3
you can just add a new class to the existing rows
.nopadding {
padding: 0 !important;
margin: 0 !important;
}
or just add
.row{
padding:0!important;
}
to your css to turn it off for all rows.
edit
Also make sure you are using class container-fluid
for your layout to be 100%