我使用 MVC4 并缩小我的 CSS 文件,但是具有背景图像的 div 标签在发布模式下没有显示图像。当我用萤火虫检查页面时,它说“加载图像失败......”
它在调试模式下工作,但不在发布模式下。
我的 div 背景图片有什么问题?
我项目的物理路径是“\Content\themes\default\images\”,CSS 如下所示:
.headerlogo {
background-image: url('images/logo.png');
background-repeat: no-repeat;
background-size: auto auto;
height: 28px;
width: 127px;
margin-top: 25px;
}
我测试了以下内容:
background-image: url("themes/default/minified/images/logo.png");
它可以工作,但是如果您创建一个示例 MVC4 互联网应用程序并查看它的 CSS,则图像地址是:
url(images/ui-bg_flat_0_aaaaaa_40x100.png)
为什么这对我不起作用?