在 CSS 文件中使用相对 URL,它相对于什么位置?

编程入门 行业动态 更新时间:2024-10-24 10:21:45
本文介绍了在 CSS 文件中使用相对 URL,它相对于什么位置?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

在 CSS 文件中定义诸如背景图像 URL 之类的内容时,当使用相对 URL 时,它相对于哪里?例如:

When defining something like a background image URL in a CSS file, when using a relative URL, where is it relative to? For example:

假设文件 /stylesheets/base-styles.css 包含:

div#header { background-image: url('images/header-background.jpg'); }

如果我通过 <link .../> 将此样式表包含到不同的文档中,CSS 文件中的相对 URL 是否会相对于样式表文档 在 /stylesheets/ 或 相对于当前文档 包含它?可能的路径,例如:

If I include this style-sheet into different documents via <link ... /> will the relative URL in the CSS file be relative to the stylesheet document in /stylesheets/ or relative to the current document it's included to? Possible paths like:

/item/details.html /about/index.html /about/extra/other.html /index.html

推荐答案

根据W3:

部分 URL 被解释为相对于样式表的来源,而不是相对于文档

Partial URLs are interpreted relative to the source of the style sheet, not relative to the document

因此,在回答您的问题时,它将与 /stylesheets/ 相关.

Therefore, in answer to your question, it will be relative to /stylesheets/.

如果您考虑这一点,这是有道理的,因为 CSS 文件可以添加到不同目录中的页面中,因此将其标准化为 CSS 文件意味着 URL 将在样式表链接的任何位置起作用.

If you think about this, this makes sense, since the CSS file could be added to pages in different directories, so standardising it to the CSS file means that the URLs will work wherever the stylesheets are linked.

更多推荐

在 CSS 文件中使用相对 URL,它相对于什么位置?

本文发布于:2023-10-31 16:33:04,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1546647.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:相对于   位置   文件   CSS   URL

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!