图像路径正确,为本地主机

我使用的是一个Web开发程序(Aptana),当我运行html页面时,它在这里运行它:

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

现在,我在我的index.html文件头部元素顶部的style / css中:

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

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

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

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

嗯,仔细检查。 是的,没有工作。


试试看......

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

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

链接地址: http://www.djcxy.com/p/30541.html

上一篇: image path correct, for localhost

下一篇: php script includes html in different directory