0

嗨,我在搞乱 SASS 和精灵,它工作正常。它从我的图像文件名中生成了很多类,我可以在我的标记中使用它们。但我想在不更改标记的情况下使用精灵。

这就是我所拥有的

我的图像位于图像/原始图像之一称为spr-links.png

在我的CSS中我有

@import "raw/*.png"; //Sprite

我应该能够喜欢这个,但没有任何结果。SASS 甚至没有失败

.footer{
    @extend .raw-spr-link;
}
4

1 回答 1

1

只需取消注释"relative_assets = true"

# Require any additional compass plugins here.

    # Set this to the root of your project when deployed:
    http_path = "/"
    css_dir = "css"
    sass_dir = "sass"
    images_dir = "images"
    javascripts_dir = "js"

    relative_assets = true

    output_style = :expanded # by Compass.app 
    sass_options = {:debug_info=>false} # by Compass.app 

    line_comments = true # by Compass.app 
于 2012-09-26T13:25:45.500 回答