سؤال

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