Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们有一个设计师来做我们的 html/css,在更新一些代码时我注意到了这一点:
img标签只是引用图像的路径:
img
<img src="/images/pic.png">
但是对于 css(带有background标签),它是使用 url 指定的:
background
header { height: 73px; background: url(/assets/maudi/nav.png); }
的重要性是url什么?
url
HTML 没有任何地方可以接受“URL 或其他内容”。
CSS 可以。该background物业就是一个典型的例子。
background: blue;
是blue颜色还是相对 URL?
blue