【发布时间】:2014-10-17 07:50:12
【问题描述】:
问题
如何将指南针 inline-image helper 与 相对的图片网址一起使用?
config.rb
relative_assets = false
我也尝试过将其完全注释掉
此代码有效
hdr-main.png 位于我本地服务器上的 /test/images/ 中。
.test{
$image:"hdr-main.png";
background: inline-image($image);
}
这段代码不工作
.test{
$image:"http://i.cdn.turner.com/cnn/.e/img/3.0/global/header/hdr-main.png";
background: inline-image($image);
}
显示此错误
Compass was unable to compile one or more files in the project:
File not found or cannot be read: /Users/myname/test/images/http://i.cdn.turner.com/cnn/.e/img/3.0/global/header/hdr-main.png
【问题讨论】:
标签: css compass-sass