Add spacing between vertically stacked columns in Bootstrap 4

后端 未结 4 1869
夕颜
夕颜 2020-11-30 09:40

Unfortunately, there doesn\'t seem to be a good way to manage vertical spacing between columns that transition from a horizontal stack to a vertical stack at certain breakpo

4条回答
  •  一整个雨季
    2020-11-30 10:20

    Here's how I ended up making this work:

    .row [class*="col-"] { 
       @extend .mb-4;
    
       &:last-child {
         @extend .mb-0;
       }
    
       @extend .mb-md-5;
    
       &:nth-last-of-type(1),
       &:nth-last-of-type(2),
       &:nth-last-of-type(3) {
         @extend .mb-md-0;
       }
    }
    

提交回复
热议问题