在导入之前,无需在文件顶部发表评论

时间:2017-03-19 19:41:28

标签: less

foo.css

.foo {
  //...
}

bar.less

/*
 * Some comment
 */

@import (inline) "foo.css";

LESS将此编译为 bar.css

.foo {
  //...
}

/*
 * Some comment
 */

如何获得正确的订单?

/*
 * Some comment
 */

.foo {
  //...
}

0 个答案:

没有答案