说明
HTML <link> 标签用于定义指向外部文档的链接。它位于文档的 <head> 部分。
示例
<!DOCTYPE html>
<html>
<head>
<title>HTML link 标签</title>
<link rel = "stylesheet" href = "/html/stylenew.css">
</head>
<body>
<div id = "contentinfo">
<p>欢迎来到我们的网站。 我们提供各种主题的教程。</p>
</div>
</body>
</html>
这里是 css 文件 stylenew.css
#contentinfo p {
line-height: 20px;
margin: 30px;
padding-bottom: 20px;
text-align: justify;
width: 140px;
color: red;
}
全局属性
此标签支持以下描述的所有全局属性 - HTML 属性参考
特定属性
HTML <link> 标签还支持以下附加属性 -
属性 | 值 | 描述 |
---|---|---|
charset | charset | 定义链接文档的字符编码。 |
href | URL | 指定资源文档的 URL。 |
hreflang | language | 目标 URL 的语言代码 |
media | screen tty tv projection handheld braille aural all | 指定文档将显示的设备 |
rel | alternate appendix bookmark chapter contents copyright glossary help home index next prev section start stylesheet subsection subsection | 描述当前文档和目标URL之间的关系。 |
rev | alternate appendix bookmark chapter contents copyright glossary help home index next prev section start stylesheet subsection | 描述目标 URI 和当前文档之间的反向。 |
size | HeightxWidth | 指定链接资源的大小。 |
target | blank _self _top _parent | 指定要将页面加载到的目标框架。 |
type | mimetype | 链接目标内容的 MIME 类型 |
事件属性
此标签支持以下描述的所有事件属性 - HTML 事件参考
浏览器支持
Chrome | Firefox | IE | Opera | Safari | Android |
---|---|---|---|---|---|
是 | 是 | 是 | 是 | 是 | 是 |