Bootstrap 3 grid with no gap

后端 未结 10 1870
暗喜
暗喜 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:57

    You'd need to override the negative margins from the .row in large screens either directly or with a custom class

    @media (min-width: 768px){
        .row {
            margin-right: 0;
            margin-left: 0;
        }
    }
    

    Updated fiddle

提交回复
热议问题