Created
April 12, 2011 15:31
-
-
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- 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