Can Bootstrap 3 Grid Be Extended?

后端 未结 3 2081
太阳男子
太阳男子 2021-02-08 23:52

I\'m working on a project where we are leaving the Bootstrap less files untouched. We also do not want to use Bootstrap classes in the HTML, since we may not use it in the futur

3条回答
  •  天涯浪人
    2021-02-09 00:31

    You can extend columns in SASS

    .cols
      @extend .row
      .col1, .col2
        @extend .col-xs-6
    

提交回复
热议问题