如果不是填写绝对路径的话,css中的url路径,即相对路径,是相对这个 .css文件的路径。
比如 目录在 /var/www/html,而 /var/www/html/
style里面有个 dorainm.css,在/var/www/html/
images里面有张图片dorainm.png,
当 的 index.php包含 style.css的时候,即
<link href="./style/dorainm.css" type="text/css" rel="stylesheet">
|
那 dorainm.css里面的某条语句,比如
background:#000000 url(../images/dorainm.png) repeat top left;
|
要填写成这种,dorainm.png是相对 dorainm.css的位置为
../images/,而不是写成相对 index.php的
./images/dorainm.png。
阅读(2476) | 评论(0) | 转发(0) |