// CSS:
#container {
text-align:center; // needed if you expect IE 5
}
.centered {
margin:0px auto; // this sets left/right margin to auto and
// centers the element
}
// HTML:
<div id="container">
<table class="centered" border="0">
...
</table>
</div>
Или, если вы хотите встроить стиль:
<div style="text-align:center;">
<table style="margin:0px auto;" border="0">
...
</table>
</div>