1

为了方便起见,我希望能够@include用简写形式包装 SASS。@i

这可能吗?这样做的最佳方法是什么?

#foo {
  @include rounded(3px);
}

变成:

#foo {
  @i rounded(3px);
}

提前致谢。

4

1 回答 1

7

使用 Sass 语法,您可以使用+

#foo
  +rounded(3px)
于 2013-01-06T21:05:57.367 回答