@content这个是不是个类似占位用的,代表里面是自定义的的

    @-webkit-keyframes #{$name} {
        @content;
    }
`@content`用在`mixin`里面的,当定义一个`mixin`后,并且设置了`@content`;
`@include`的时候可以传入相应的内容到`mixin`里面

 官网给的例子:

$color: white;
@mixin colors($color: blue) {
  background-color: $color;
  @content;
  border-color: $color;
}
.colors {
  @include colors { color: $color; }
}

编译后: 

.colors {
  background-color: blue;
  color: white;
  border-color: blue;
}

http://sass-lang/documentation/file.SASS_REFERENCE.html 

更多推荐

sass语法中的@content