您的位置:寻梦网首页编程乐园HTML园地HTML实用教程
HTML实用教程
作者:佚名 来源:梦之都(www.dreamdu.com)

9.4. HTML abbr 属性

abbr 属性 -- 代表表头缩写

示例

<table width="80%" border="1">
    <tr> 
        <th> </th>
        <th abbr="com domain">梦之都统计的.com域名的数量</th>
        <th abbr="cn domain">梦之都统计的.cn域名的数量</th>
        <th abbr="net domain">梦之都统计的.net域名的数量</th>
    </tr>
    <tr>
        <th abbr="2003s">在梦之都2003年注册的域名</th>
        <td>1000</td>
        <td>2000</td>
        <td>3000</td>
    </tr>
    <tr>
        <th abbr="2004s">在梦之都2004年注册的域名</th>
        <td>4000</td>
        <td>5000</td>
        <td>6000</td>
    </tr>
    <tr>
        <th abbr="2005s">在梦之都2005年注册的域名</th>
        <td>7000</td>
        <td>8000</td>
        <td>9000</td>
    </tr>
</table>

HTML abbr 属性示例 -- 可以尝试编辑

说明

  • 表头缩写abbr通常是提供给某些网页阅读器使用的。
HTML视频教程