Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想为网页定义图像背景,其中图像位于定义 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; }
结果:找不到资源(萤火虫)。为什么?我如何必须指定路径?
删除第一个斜杠,该文件夹与以下img文件夹位于同一文件夹中styles.css:
img
styles.css
background: url("img/logo.png") no-repeat;