@Import of less files into a limited scope

前端 未结 3 1848
遇见更好的自我
遇见更好的自我 2021-02-02 10:53

I want to import all styles from another less file, but into a limited scope. I\'m trying this:

\"my-site.less\"

.wrapper-class {
    @import \"path/to/s         


        
3条回答
  •  臣服心动
    2021-02-02 11:19

    Since this question was posted and answered, pre-processors have implemented @import with scope. This now works in LESS, SASS and Stylus.

    example:

    .lt-ie9 {
      @import "ie8-fixes";
    }
    

提交回复
热议问题