在我的symfony项目中,在Twig上,我有这个:
<div class="ad-title" style="background-image: url({{ ad.coverImage }})">
<div class="container">
<h1>{{ad.title}}</h1>
<p>{{ad.introduction}}</p>
<p class="h2">
<strong>{{ad.rooms}} chambres</strong> pour <strong>{{ad.price}} €</strong> par nuit
</p>
<a href="#" class="btn btn-primary">Réserver !</a>
</div>
</div>
在第一行,在
url({{ ad.coverImage }})
我遇到此错误:
设置元素的背景图像。) Expectedcss(css-rparentexpected)
如果我删除以下空格:url({{ad.coverImage}})
没有错误,但是它没有显示在我的页面上。 而且,如果我删除了第一个div,它将起作用(没有背景图片)。
但是,我的变量和属性很好。
{{ad.coverImage}}是一个类似于https://lorempixel.com/1000/350/?31936
的链接在控制台中:没有错误