如何在CSS中设置背景图像?

时间:2013-07-27 13:09:22

标签: java css vaadin

我想为网页定义图像背景,其中图像位于定义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)。 为什么?如何指定路径?

1 个答案:

答案 0 :(得分:8)

删除第一个斜杠,img文件夹与styles.css位于同一文件夹中:

background: url("img/logo.png") no-repeat;