Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 simpless,我将项目拖入其中并将所有较少的文件定位到 styles.css
问题是当编译较少的样式表时,它们只是相互编写而不是合并在一起。编译时有没有办法将它们全部合并到 styles.css 中?
您必须创建一个导入子文件的 master less 文件。主文件将导入子文件:
@import "myfile1.less"; @import "myfile2.less";
进入编译器,您只需传递 master 的less 文件。
希望这会有所帮助// ph