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


HTML <td> abbr屬性用法及代碼示例


HTML <td> abbr屬性用於指定內容的較短版本。 HTML 5不支持此屬性。它不描述任何視覺效果,但由屏幕閱讀器使用。

用法:

<td abbr="text">

屬性值:


  • text:它包含單元格內容的簡短描述。

例:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
      HTML td abbr Attribute 
  </title> 
</head> 
  
<body> 
    <h1>GeeksforGeeks</h1> 
  
    <h2>HTML td abbr Attribute</h2> 
  
    <table border="1"> 
        <tr> 
            <th>NAME</th> 
            <th>AGE</th> 
            <th>BRANCH</th> 
        </tr> 
  
        <tr> 
            <td abbr="name of student">BITTU</td> 
            <td abbr="age of student">22</td> 
            <td abbr="branch name">CSE</td> 
        </tr> 
  
        <tr> 
            <td>RAKESH</td> 
            <td>25</td> 
            <td>EC</td> 
        </tr> 
    </table> 
</body> 
  
</html>

輸出:

支持的瀏覽器:下麵列出了HTML <td> abbr屬性支持的瀏覽器:

  • 穀歌瀏覽器
  • IE瀏覽器
  • Firefox
  • Safari
  • Opera


相關用法


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