當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML rel屬性用法及代碼示例


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




相關用法


注:本文由純淨天空篩選整理自shubham_singh大神的英文原創作品 HTML | rel attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。