我在选择器中使用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(...)
内的多个背景
有没有办法从资产路径的输出中删除引号?
答案 0 :(得分:0)
asset-url
的 url()
是要走的路
background-image: asset-url(bg1.jpg'), asset-url('bg2.jpg'), asset-url('bg3.jpg')