指南针背景图像背景颜色?

时间:2013-06-07 14:51:51

标签: css compass-sass


不知道如何使用Compass将背景图像和背景颜色应用于div,这样尝试

 @include background(
                  image-url($bg-sprite) no-repeat,
                  color (#333));

这样做:))))

@include background(
                      image-url($bg-sprite) no-repeat,
                      linear-gradient(#333, #333));

有更好的方法吗?

1 个答案:

答案 0 :(得分:0)

这里的指南针没有什么特别之处。背景mixin应该将有效的背景声明作为其参数:

.foo {
    @include background(image-url($bg-sprite) no-repeat #333);
}

但是,如果您没有使用渐变,则根本不需要使用mixin:

.foo {
    background: image-url($bg-sprite) no-repeat #333;
}