欢迎来到 Newlifeclan Q&A, 你可以在此提问和回复,和社区其他用户共同交流。

Symony3 css获取背景图片(background-image) 问题

0 投票
 //index.html.twig
引用CSS
{% block stylesheets %}
    {% stylesheets 'bundles/acmehello/css/*' filter='cssrewrite' %}
        <link rel="stylesheet" href="{{ asset_url }}" />
    {% endstylesheets %}
{% endblock %}
 
//style.css
.bg {
          background-image: image-url("../images/maxBg.jpg");
          background-repeat: no-repeat;
          background-position: top left;
}

然后网页调试里面显示

http"//localhost:8000/bundles/acmehello/images/maxBg.jpg

但是就是没找到  这啥原因?

时间: 2016年 3月 1日 作者: hg7213013

1个回答

0 投票

你的css

background-image: image-url("../images/maxBg.jpg");

应该改成这样才对

background-image: url(../images/maxBg.jpg);

顺便看看你bundles/acmehello/images里是否有maxBg.jpg文件

已回复 2016年 3月 4日 作者: napoleon
...