假设我链接到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文件会起作用吗?
答案 0 :(得分:1)
这应该有效
index.html包含test / style.css,这是一个有效的链接
和
style.css以/test/
为根,所以img / bg.png也是有效的链接
注意:作为一般约定,在引用当前目录时最好包含./
最佳选择是从css文件中引用./test/bg.png
等图像
答案 1 :(得分:0)