Skip to content

Instantly share code, notes, and snippets.

@logicaroma
Created April 12, 2011 15:31
Show Gist options
  • Save logicaroma/915723 to your computer and use it in GitHub Desktop.
Save logicaroma/915723 to your computer and use it in GitHub Desktop.
You can read more about xhtml table markup in HTML Dog’s Table Section. I have tested the tables below in Mozilla Firefox 3, IE 6 and 7, Opera 9.x and Safari.
<!-- Table markup-->
<table id="...">
<!-- Table header -->
<thead>
<tr>
<th scope="col" id="...">...</th>
...
</tr>
</thead>
<!-- Table footer -->
<tfoot>
<tr>
<td>...</td>
</tr>
</tfoot>
<!-- Table body -->
<tbody>
<tr>
<td>...</td>
...
</tr>
...
</tbody>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment