Thead (HTML element)

From Wiki @ Karl Jones dot com
Revision as of 07:28, 2 May 2016 by Karl Jones (Talk | contribs) (Created page with "In HTML, the '''thead''' element represents the block of rows that consist of the column labels (headings) for its parent Table (HTML element)|table element...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

In HTML, the thead element represents the block of rows that consist of the column labels (headings) for its parent table element.

Description

...

Examples

<table>
 <thead>
  <tr>
     <th>Month</th>
     <th>Savings</th>
  </tr>
 </thead>
 <tfoot>
  <tr>
     <td>Sum</td>
     <td>$180</td>
  </tr>
 </tfoot>
 <tbody>
  <tr>
     <td>January</td>
     <td>$100</td>
  </tr>
  <tr>
     <td>February</td>
     <td>$80</td>
  </tr>
 </tbody>
</table>

See also

External links