@Import of less files into a limited scope

前端 未结 3 1850
遇见更好的自我
遇见更好的自我 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:27

    According to the css-spec, the @import-declaration has to come before all other declarations in the css-file. So your @import inside the rule is expected to fail. I guess the @importing at the end of the file not failing is goodwill of the browser-vendors.

    I guess LESS will abide by the same rules.

    EDIT: the question is, why do you want to have those styles scoped? With proper declarations, this should not be necessary.

提交回复
热议问题