几个小时后我发现了什么:
作品:
background-image: url(image_path('transparent_2x2.png'));
// how to add attributes like repeat, center, fixed?
上面的输出类似于:"/assets/transparent_2x2-ec47061dbe4fb88d51ae1e7f41a146db.png"
注意前面的"/",它在引号内。还要注意您的样式表.css.scss 中的scss 扩展和 image_path 助手。该图像位于app/assets/images 目录中。
不起作用:
background: url(image_path('transparent_2x2.png') repeat center center fixed;
不起作用,无效的属性:
background:url(/assets/pretty_photo/default/sprite.png) 2px 1px repeat center fixed;
我最后的手段是将这些放在我的公共 s3 存储桶中并从那里加载,但最终还是有所进展。