Neueste Web-Entwicklung Tutorials
 

HTML <table> summary Attribute

<HTML <table> -Tag

Beispiel

Der folgende HTML-Tabelle definiert eine Zusammenfassung des Inhalts der Tabelle:

<table summary="Monthly savings for the Flintstones family">
  <tr>
    <th>Month</th>
    <th>Savings</th>
  </tr>
  <tr>
    <td>January</td>
    <td>$100</td>
  </tr>
</table>
Versuch es selber "

Definition und Verwendung

Die <table> Zusammenfassung Attribut nicht in HTML5 unterstützt.

Die summary Attribut gibt eine Zusammenfassung des Inhalts einer Tabelle.


Browser-Unterstützung

Attribut
summary ja ja ja ja ja

Die summary Attribut hat keinen visuellen Effekt in gewöhnlichen Web - Browser, sondern kann von einem Screen Reader verwendet werden.


Syntax

<table summary="text">

Werte Attribut

Wert Beschreibung
text Eine Zusammenfassung des Inhalts der Tabelle,

<HTML <table> -Tag