CSS目录问题?

时间:2010-12-03 02:06:50

标签: css

假设我链接到css文件url(img/bg.png)中的背景img,并且css文件位于http://example.com/test/style.css且img文件位于http://example.com/test/img/bg.png

但是我在http://example.com/index.html浏览了该页面,我喜欢通过<link rel='stylesheet' type='text/css' href='test/style.css' />的css文件,其基数设置为<base href="http://example.com" />

css文件会起作用吗?

2 个答案:

答案 0 :(得分:1)

这应该有效

index.html包含test / style.css,这是一个有效的链接

style.css以/test/为根,所以img / bg.png也是有效的链接

注意:作为一般约定,在引用当前目录时最好包含./最佳选择是从css文件中引用./test/bg.png等图像

答案 1 :(得分:0)