这是我的目录:
/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)
有人知道什么是正确的道路吗?
答案 0 :(得分:0)
致电url(../img/icon.png)
是正确的。
您是否尝试从其他地方调用图像,例如背景:
body {
background-image: url(../img/icon.png);
}
另请检查.htaccess
。