Remove spacing between cols

前端 未结 9 1858
盖世英雄少女心
盖世英雄少女心 2020-12-15 03:38

I want to remove the space between multiple columns in the Bootstrap grid.

How can we overwrite Bootstrap\'s CSS to achieve this task or any other better solution wi

9条回答
  •  北海茫月
    2020-12-15 04:06

    If you are using LESS you can use snippet and apply it to the row.

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

    If normal CSS

    .no-gutter > [class*="col-"]{
    }
    

    Like so:

    //stuff here for this column
    //stuff here for columns

提交回复
热议问题