The correct way to center block elements, like tables, in CSS is to set the margins to this:
margin-left: auto; margin-right: auto;
body { text-align: center; }
#centerItem { text-align: left; margin: auto; }
apply this class to <table
<table class="CenterItem" .....
Or
<table style="text-align: left; width: 60%; margin: auto;" border="1"
cellpadding="2" cellspacing="2">
Thanks