How do I center a table-based layout on a variable width page?
Want a table-based layout to test a design, don't want to use CSS. Am using a table as the overall container for the page, so this method works fine.
<CENTER>
<TABLE ...> // overall page container table
<TR>
...
</TR>
</TABLE>
</CENTER>
However, the validator says that <CENTER> is depricated in HTML 4.01. How do I center this container table, without using CSS?
Thanks
plowter
