问题
如何将 compass inline-image helper与不相关的图像 url 一起使用?
配置文件
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