Bootstrap 3 grid with no gap

后端 未结 10 1888
暗喜
暗喜 2020-12-13 01:58

I am trying to create a 2 column grid, with literally a 50% with no margins or padding.

How do I achieve this with Bootstrap 3 I tried this but end up with negative

10条回答
  •  旧时难觅i
    2020-12-13 02:51

    I always add this style to my Bootstrap LESS / SASS:

    .row-no-padding {
      [class*="col-"] {
        padding-left: 0 !important;
        padding-right: 0 !important;
      }
    }
    

    Then in the HTML you can write:

提交回复
热议问题