Remove spacing between cols

前端 未结 9 1861
盖世英雄少女心
盖世英雄少女心 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:04

    I would add a class to the row and target the column children with a descendant wildcard selector:

    HTML:

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

    CSS:

    .nopadding > div[class^="col-"] {
        padding-right: 0;
        padding-left: 0;
    }
    

提交回复
热议问题