Bootstrap 3 grid with no gap

后端 未结 10 1875
暗喜
暗喜 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条回答
  •  暖寄归人
    2020-12-13 02:43

    Another option would be to create your own special CSS class for whenever you want to apply the "gutterless" columns..

    HTML

    Col 1
    Col 2

    CSS

    .no-gutter [class*="-6"] {
        padding-left:0;
    }
    

    Demo: http://bootply.com/73960

提交回复
热议问题