我有这个结构的我的文件:
lib / css / …将我的样式分为每个区域的单个.less文件.
lib / style.less是要将我的子样式文件收集到的文件,而我要链接到HTML中的文件.
当我输入(到style.less):
@import url(“/ css / StyleToImport.less”);
要么
@import“/css/StyleToImport.less”;
…我得到一个语法错误.
有一个单个文件可以包含颜色,尺寸等的所有变量可能非常方便.
但是现在,我必须使用< link ...> HTML中的标签到每个单个文件 – 这不是很方便.
附:我已经读了Join two .less files into one css file
我已经读过:
Importing
Importing works pretty much
as expected. You can import a .less
file,and all the variables in it will
be available. If the file is a .less,
the extension is optional:@import “library”;
@import “typo.css”;