很少@import似乎不起作用

时间:2012-02-20 14:05:08

标签: css linux ubuntu less

在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的内容。我在这里做错了吗?

1 个答案:

答案 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 导入文件。