1

我在 SCSS 中有这个:

@include background(image-url("test.jpg") no-repeat center top);

我怎样才能更改图像网址。现在图像 url 给出 /img/。我怎样才能改变那条路?

谢谢

4

1 回答 1

2

您可以使用变量更改路径images_dir,该变量位于 compass 项目根文件夹的 config.rb 文件中。

前任。

# Default
images_dir = "img"
# Customized
images_dir = "pictures"

指南针文档中的更多信息

于 2012-11-08T17:47:21.720 回答