Remove spacing between cols

前端 未结 9 1877
盖世英雄少女心
盖世英雄少女心 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条回答
  •  旧时难觅i
    2020-12-15 04:04

    add a class when you need to remove spaces use it

    .padding-0{
        padding-right:0;
        padding-left:0;
    }
    

    in html write this class

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

提交回复
热议问题