Sass 在scss文件中使用@extent时Grunt autoprefixer错误

Sass 在scss文件中使用@extent时Grunt autoprefixer错误,sass,gruntjs,autoprefixer,Sass,Gruntjs,Autoprefixer,错误: 第66行指向以下代码: 资料来源: Running "autoprefixer:dist" (autoprefixer) task File .tmp/styles/documentation.css created. Warning: Can't parse CSS: Missing property value at line 66:21 in .tmp/styles/main.css Use --force to continue. 我无法在scss中扩展标记?或者是自动刷新器问

错误:

第66行指向以下代码:

资料来源:

Running "autoprefixer:dist" (autoprefixer) task
File .tmp/styles/documentation.css created.
Warning: Can't parse CSS: Missing property value at line 66:21 in .tmp/styles/main.css Use --force to continue.

我无法在scss中扩展标记?或者是自动刷新器问题?

您需要使用
@extend
而不是
@extent

没错,您不能在Sass中使用
@extent
,因为没有
@extent
。仔细检查你的拼写。投票结束:印刷错误。谢谢。我的错。我将把这个留给其他Noobie:
span {
  @extent .md-body-1;
}

p {
  @extent .md-body-1;
}