我想为网页定义图像背景,其中图像位于定义css资源的子文件夹中。
路径:
src/main/webapp/VAADIN/themes/mytheme/styles.css
src/main/webapp/VAADIN/themes/mytheme/img/logo.png
的CSS:
.root {
background: url("/img/logo.png") no-repeat;
}
结果:找不到资源(firebug)。 为什么?如何指定路径?
答案 0 :(得分:8)
删除第一个斜杠,img
文件夹与styles.css
位于同一文件夹中:
background: url("img/logo.png") no-repeat;