Neueste Web-Entwicklung Tutorials
 

HTML colspan Attribute


Definition und Verwendung

Das colspan Attribut definiert die Anzahl der Spalten eine Tabellenzelle erstrecken sollte.


Gilt für

Das colspan Attribut kann über die folgenden Elemente verwendet werden:

Elements Attribut
<td> colspan
<th> colspan

Beispiele

Td Beispiel

Eine HTML-Tabelle mit einer Tabellenzelle, die zwei Spalten umfasst:

<table>
  <tr>
    <th>Month</th>
    <th>Savings</th>
  </tr>
  <tr>
    <td>January</td>
    <td>$100</td>
  </tr>
  <tr>
    <td>February</td>
    <td>$100</td>
  </tr>
  <tr>
    <td colspan="2">Sum: $180</td>
  </tr>
</table>
Versuch es selber "

Th Beispiel

Eine HTML-Tabelle mit Kopfzelle, die zwei Spalten umfasst:

<table>
  <tr>
    <th colspan="2">Monthly Savings</th>
  </tr>
  <tr>
    <td>January</td>
    <td>$100</td>
  </tr>
  <tr>
    <td>February</td>
    <td>$80</td>
  </tr>
</table>
Versuch es selber "

Browser-Unterstützung

Das colspan Attribut hat die folgende Browser - Unterstützung für jedes Element:

Element
td ja ja ja ja ja
th ja ja ja ja ja