0


不知道如何使用 Compass 将背景图像和背景颜色应用于 div
尝试过这种方式

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

这样做:))))

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

有没有更好的办法?

4

1 回答 1

0

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

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

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

.foo {
    background: image-url($bg-sprite) no-repeat #333;
}
于 2013-06-07T15:01:22.477 回答