0

I've been make grid using bootstrap width 100% but right and left has a padding.

How to make partition of this image enter image description here on grid using bootstrap width 100% ?

Skripsi Rico
  • 183
  • 1
  • 1
  • 12
  • 1
    i think that's padding of `div class="row"`, should post the relevant code or wants us to keep guessing – Shehary Aug 04 '15 at 03:40

2 Answers2

0

By default "row"" class having padding left and padfing right.please remove padding and add "text-center" class to the div.

Naveen
  • 141
  • 1
  • 1
  • 4
0

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%

Community
  • 1
  • 1
NooBskie
  • 3,761
  • 31
  • 51