import .css file into .less file

后端 未结 9 821
渐次进展
渐次进展 2020-11-28 01:35

Can you import .css files into .less files...?

I\'m pretty familiar with less and use it for all my development. I regularly use a structure as follows:



        
9条回答
  •  情书的邮戳
    2020-11-28 02:15

    Try this :

    @import "lib.css";
    

    From the Official Documentation :

    You can import both css and less files. Only less files import statements are processed, css file import statements are kept as they are. If you want to import a CSS file, and don’t want LESS to process it, just use the .css extension:


    Source : http://lesscss.org/

提交回复
热议问题