本文介绍了什么是......有点困惑我,我是网络新手的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
当我在外部样式表中使用
body {
background-image:url(images / bg-body.png) ;
}
没有添加图片但是当我使用它而不是上面时
background-image:url(../ images / bg-body.png);
i use ..之前/ images目录
图像是在后台加载的,
那么什么(......这个点在这里对我有用,
when i use in external stylesheet that
body{
background-image: url(images/bg-body.png);
}
no image is added but when i use this instead of above
background-image: url(../images/bg-body.png);
i use .. before /images directory
the image is loaded in background,,
so what (.. this dots means here that worked for me,
推荐答案
..
指的是当前目录的父级
refers to the parent of the current directory
parent directory (..) ----
|----images directory ----
| |
| bg-body.png
|
|----webpage directory ---
|
yourpage.html (referencing the bg-body.png)
了解更多: []
这篇关于什么是......有点困惑我,我是网络新手的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!