css / html:为localhost获取背景图像路径正确

时间:2015-12-30 01:48:38

标签: html css

我正在使用网络开发程序(Aptana),当我运行html页面时,它在这里运行:

http://127.0.0.1:8000/RadiantOrigins/index.html

现在,我在我的index.html文件中,head / css位于head元素的顶部:

body {
    /* background-color: red; */
    background-image: url('../EverythingImportant.jpg');
}

好的,谢谢,我可以将图像放在与index.html文件相同的目录下,然后找到它。

但是如果我将EverythingImportant.jpg放在images目录下,这是项目所在的子目录,那么这些都不起作用:

background-image: url('images/EverythingImportant.jpg');
background-image: url('/images/EverythingImportant.jpg');
background-image: url('./images/EverythingImportant.jpg');
background-image: url('../images/EverythingImportant.jpg');
嗯,仔细检查。是的,没有人工作。

2 个答案:

答案 0 :(得分:2)

试试吧......

background-image: url('../EverythingImportant.jpg');

答案 1 :(得分:0)

Aptana在您刷新工具内的文件内容之前不会看到图像。所以即使你有那里的图像,它也无法识别它。