在速记宏中包装SASS的@include

时间:2013-01-06 20:54:15

标签: css sass

为了方便起见,我希望能够用@include这样的简写来包装SASS的@i

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

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

变为:

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

提前致谢。

1 个答案:

答案 0 :(得分:5)

使用Sass语法,您只需使用+

#foo
  +rounded(3px)