Why stop there? Here's the skeleton of a two column table with
summary, caption, header, body and footer. Note that the first
column is designed to be a label for the data in the second.
Also note the placement of the <tfoot> element in the sequence.
This is important.

<table id="" class="" summary="">
 <caption></caption>
 <thead>
  <tr>
   <th colspan="2" title=""></th>
  </tr>
  <tr class="col">
   <th scope="col" title=""></th>
   <th scope="col" title=""></th>
  </tr>
 </thead>
 <tfoot>
  <tr>
   <td colspan="2" title=""></td>
  </tr>
 </tfoot>
 <tbody>
  <tr>
   <th scope="row"></th>
   <td></td>
  </tr>
 </tbody>
</table>

-- 
Douglas Clifton
[EMAIL PROTECTED]
http://loadaveragezero.com/
http://loadaveragezero.com/app/s9y/
http://loadaveragezero.com/drx/rss/recent

> From: "Patrick H. Lauke" <[EMAIL PROTECTED]>
> Date: Sun, 14 Aug 2005 12:16:26 +0100
> Subject: Re: [WSG] Table header
> 
> 
> 
> Lea de Groot wrote:
> 
> > The thead tag is the key -
> 
> If you're using thead, you may as well go all the way and add a tbody as
> well...
> 
>    <table>
>        <thead>
>        <tr>
>         <th>ID</th><th>Var 1</th><th>Var 2</th>
>        </tr>
>        </thead>
>        <tbody>
>         <tr>
>                 <td>ID VALUE</td>
>                 <td>Var 1 value</td>
>                 <td>Var 2 value</td>
>         </tr>
>        </tbody>
>    </table>
> 
> --
> Patrick H. Lauke
> __________________________________________________________
> re·dux (adj.): brought back; returned. used postpositively
> [latin : re-, re- + dux, leader; see duke.]
> www.splintered.co.uk | www.photographia.co.uk
> http://redux.deviantart.com
> __________________________________________________________
> Web Standards Project (WaSP) Accessibility Task Force
> http://webstandards.org/
******************************************************
The discussion list for  http://webstandardsgroup.org/

 See http://webstandardsgroup.org/mail/guidelines.cfm
 for some hints on posting to the list & getting help
******************************************************

Reply via email to