我的项目的资源:
|--static
|----img
|------foo.jpg
|----css
|------style.css
|--templates
|----index.html
我要从img目录中的 foo.jpg 中加载index.html,它有效如下:
.foo{
background-image:url("../../img/foo.png")
}
但是当我将其移入style.css时,它不再起作用了:
.foo{
background-image:url("../img/foo.png")
}
实际上,我已经修改了foo.img的相对路径, 我如何正确加载此图像?
答案 0 :(得分:0)
background-image:url("../img/foo.png")
用作PNG
,但在文件夹中有一个JPG
文件,请确保要使用的图像类型。