English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

HTML Referenzhandbuch

Vollständiges Verzeichnis der HTML-Tags

HTML td axis Attribut

Die axis-Attribut wird verwendet, um Zellen zu kategorisieren, das axis-Attribut kann verwendet werden, um相关信息列进行分组. Das axis-Attribut hat in regulären Webbrowsern keine visuelle Wirkung, kann aber von Screenreadern verwendet werden.

 HTML <td> Tag

Online-Beispiel

HTML-Tabelle mit zugeordneten Zellen:

<table style="width:100%" border="1">
  <tr>
    <th axis="name">Name</th>
    <th axis="contact">E-Mail-Adresse</th>
    <th axis="contact">Phone Number</th>
    <th axis="contact">Address</th>
  </tr>
  <tr>
    <td axis="name">Ma Liu</td>
    <td axis="contact">[email protected]</td>
    <td axis="contact">+13212345678</td>
    <td axis="contact">Shanghai Minhang District</td>
  </tr>
</table>
Test it out ‹/›

Browser Compatibility

IEFirefoxOperaChromeSafari

The axis attribute has no visual effect in ordinary web browsers, but it can be used through screen readers.

Definition and Usage

HTML5 The <td> axis attribute is not supported.

The axis attribute is used to classify cells.

The axis attribute can be used to combine related information columns.

Syntax

<td axis="category_name">

Attribute value

ValueDescription
category_nameSpecify the name of the category.
 HTML <td> Tag