即使我使用 url('../../images/image.png') 背景图像路径也不起作用

Background image path is not working even when I use url('../../images/image.png')

当我给出背景图片路径时出现 Failed to load resource: the server responded with a status of 404 (Not Found) 错误:

body {
    background-image: url('../../images/img.png') !important;
    background-color: #d0dfe5 !important;
    background-repeat: repeat;
    font-size: 14px !important;
}

我不知道为什么会收到此错误。路径上有什么我需要改变的吗? 请帮助我。

显示文件的屏幕截图

标题##`.bg{

background: url('../img/banner3.jpg') no-repeat 60% 90%;
background-attachment: fixed;
background-size: 100% 100%;
position: fixed;
width:100%;
top:0;
left:0;

}` my files

根据您的目录结构,您的图像位于当前位置上方一级的文件夹中,而不是二级文件夹中。这就是为什么你需要使用 ../ 假设 ../../

试试这个:'../images/hrm_taustakuvan_verkko.png'

问题出在你的路径 css

background-image: url('../../images/image.png') !important;

你在“personaltitania/WebContent/styles/personaltitania_base.css”,图像文件在“WebContent/images/”,但是你return两级当你使用“../../”,在这一刻,您尝试在“personaltitania/images”中找到图像 "image.png"。

尝试使用

background-image: url('../images/image.png') !important;

而且,我在你的图像文件夹中没有看到文件 "image.png"