rel属性用于指定当前文档和链接文档之间的关系。仅在存在href属性时使用。
支持的标签:
rel属性应用于以下元素:
HTML rel属性示例
<!DOCTYPE html>
<html>
<head>
<title>HTML a rel Attribute</title>
</head>
<body>
<p>Welcome to
<a rel="noopener"
href="https://ide.geeksforgeeks.org/">
GeeksforGeeks
</a>
</p>
</body>
</html>
输出:
HTML区域rel属性的示例
<!DOCTYPE html>
<html>
<head>
<title>
HTML area rel Attribute
</title>
</head>
<body style="text-align:center;">
<img src=
"https://media.geeksforgeeks.org/wp-content/uploads/20190227165729/area11.png"
alt="" width="300" height="119" class="aligncenter"
usemap="#shapemap" />
<map name="shapemap">
<!-- area tag contained image. -->
<area shape="poly" coords="59, 31, 28, 83, 91, 83"
href="https://media.geeksforgeeks.org/wp-content/uploads/20190227165802/area2.png"
alt="Triangle" rel="alternate">
<area shape="circle" coords="155, 56, 26"
href="https://media.geeksforgeeks.org/wp-content/uploads/20190227165934/area3.png"
alt="Circle" rel="alternate">
<area shape="rect" coords="224, 30, 276, 82"
href="https://media.geeksforgeeks.org/wp-content/uploads/20190227170021/area4.png"
alt="Square" rel="alternate">
</map>
</body>
</html>
输出:
支持的浏览器:下面列出了HTML rel属性支持的浏览器
- 谷歌浏览器4.0
- Firefox 4.0
- 苹果Safari 4.0
- Opera 10.5
- Internet Explorer /Edge
相关用法
- HTML <area> rel属性用法及代码示例
- HTML <a> rel属性用法及代码示例
- HTML <link> rel属性用法及代码示例
- HTML Anchor rel用法及代码示例
- HTML Link rel用法及代码示例
- HTML <html> xmlns属性用法及代码示例
- HTML scoped属性用法及代码示例
- HTML <th> valign属性用法及代码示例
- HTML <col> align属性用法及代码示例
- HTML poster属性用法及代码示例
- HTML Class属性用法及代码示例
- HTML style属性用法及代码示例
- HTML oninvalid用法及代码示例
- HTML <select> autocomplete属性用法及代码示例
- HTML <table> bgcolor属性用法及代码示例
- HTML onsubmit用法及代码示例
- HTML onunload用法及代码示例
- HTML srcdoc属性用法及代码示例
- HTML Marquee truespeed用法及代码示例
- HTML onkeyup用法及代码示例
- HTML ondrop用法及代码示例
- HTML <td> abbr属性用法及代码示例
- HTML onpageshow用法及代码示例
注:本文由纯净天空筛选整理自shubham_singh大神的英文原创作品 HTML | rel attribute。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。