在Ubuntu机器上使用命令行程序lessc
installed by following this guide,似乎没有像我预期的那样编译@import
规则。
$ echo '@import "inc.less"' > test.less
$ echo 'body { background: pink }' > inc.less
$ lessc test.less
输出为空行。我期待inc.less的内容。我在这里做错了吗?
答案 0 :(得分:3)
尝试@import "inc";
请勿使用.less
扩展程序。我还认为你需要一个分号。
例如,这里有几行对我有用:
@import "blueprint/screen";
@import "blueprint/ie";
a, a:link, a:visited, a:hover, a:active
{
text-decoration:none;
color:#FF0000;
}
将 blueprint / screen.less 和 blueprint / ie.less 导入文件。