在CSS文件中定义类似背景图像URL的内容时,使用相对URL时,它相对于哪个?例如:
假设文件/stylesheets/base-styles.css包含:
div#header {
background-image: url('images/header-background.jpg');
}
Run Code Online (Sandbox Code Playgroud)
如果我包括通过这个样式表到不同的文件<link ... />会在CSS文件中的相对URL是相对于样式表文件中/stylesheets/或相对于当前文档包括它是什么?可能的路径如:
/item/details.html
/about/index.html
/about/extra/other.html
/index.html
Run Code Online (Sandbox Code Playgroud)