In the html file i can access the images folder using asset function but in my css i am not able to us e images

background-image:url(../images/back.png)

{% stylesheets 'css/*' %}
<link href="{{ asset_url }}" rel="stylesheet" media="screen" />
{% endstylesheets %}

How to fix that

有帮助吗?

解决方案

This is something that always puzzles me as well! Anyway there is a cssrewrite assetic filter that should help you to solve this problem detecting and rewriting urls in css scripts (anyway, even using this, you may need to change urls in your css).

其他提示

I use this:

background-image: url(/bundles/yourbundle/images/pic.png)

Works without cssrewrite filter.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top