从asset_path输出中删除双引号

时间:2015-07-09 20:58:33

标签: css ruby-on-rails sass assets

我在选择器中使用asset_path向其添加多个背景图像。

在SCSS上,这是我的代码:

background-image: url(asset-path('bg1.jpg')), url(asset-path('bg2.jpg')), url(asset-path('bg3.jpg'))

这是CSS中的输出

background-image: url("somehashbg1.jpg"), url("somehashbg2.jpg"), url("somehashbg3.jpg")

CSS没有呈现它。它不期望url(...)内的多个背景

的引号

有没有办法从资产路径的输出中删除引号?

1 个答案:

答案 0 :(得分:0)

没有asset-url

url()是要走的路

background-image: asset-url(bg1.jpg'), asset-url('bg2.jpg'), asset-url('bg3.jpg')