如何在根目录上创建文件夹的路径?

时间:2017-01-27 12:18:19

标签: css path directory

这是我的目录:

/myweb
    /css
        style.css
    /img
        icon.png
    index.php
    .htaccess

我需要在icon.png中致电style.css。我已经测试了很多案例,但这些案例都没有:

// style.css

url(../img/icon.png)
url(./img/icon.png)
url(/img/icon.png)
url(img/icon.png)
url(../icon.png)
url(./icon.png)

有人知道什么是正确的道路吗?

1 个答案:

答案 0 :(得分:0)

致电url(../img/icon.png)是正确的。 您是否尝试从其他地方调用图像,例如背景:

body {
    background-image: url(../img/icon.png);
}

另请检查.htaccess

中的配置