What does lt;linkgt; tag do besides including stylesheets?(lt;linkgt; 是什么意思?标签除了包括样式表之外还做什么?)
问题描述
我知道 HTML <link> 标记用于附加样式表,但是查看 W3CSchools 标记参考,它还有许多其他的 rel 属性值.我找遍了所有地方,但我一辈子都找不到一个地方来详细描述其他价值观的作用以及它们的工作方式.谁能把我送到正确的地方或自己解释一下?
I know that the HTML <link> tag is used for attatching stylesheets, but looking at the W3CSchools tag reference, it has many other values for the rel attribute. I've looked all over the place, but I can't for the life of me find a place that describes in detail what the other values do and how they work. Can anyone send me to the right place or explain it themselves?
让我重新表述我的问题;我知道链接标签提供了与当前文档相关的其他页面,但它们是如何使用的?例如,如何使用 first、prev 和 next 关系?
Let me rephrase my question; I know that the link tag supplies other pages that relate to the current document, but how are they used? For example, how are the first, prev, and next relationships used?
推荐答案
我知道两个突出的常见用法:
I know two prominent common uses:
用
rel="stylesheet"
来引用外部CSS样式表
With
rel="stylesheet"
to reference external CSS style sheets
用rel="favicon"
来引用浏览器的favicons
With rel="favicon"
to reference browser favicons
另外还有
正向和反向链接 (
rel="next"
)
指向搜索引擎替代资源的链接 (rel="alternate"
)
Links to alternative resources for search engines (rel="alternate"
)
查看 W3C 参考:HTML 中的链接文档 以了解样式表和后两者的详细信息.
Check the W3C Reference: Links in HTML documents for details on stylesheet, and the latter two.
这篇关于<link> 是什么意思?标签除了包括样式表之外还做什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:<link> 是什么意思?标签除了包括样式表之外还做什么?
基础教程推荐
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 直接将值设置为滑块 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01