I would like to place my table smack dab in the center of a page. IT is easy horizontally align it just using
<table align="center"></table>
But it will not allow this:
<table align="center" valign="center">
I also cant put the valign in a div because it is not a valid attribute.
I have the idea of making a cell take up an the entire page then using:
<Table align="center" width="100%">
<tr><td valign="middle" height="100%"></td></tr>
</table>
But that too does not work because my <td>
does not take up the entire page. When I set its height to 100% it only takes up the amount of space necessary.
Any Ideas? CSS code would be great help also.