how to align a table in the center of a page css code example
Example 1: how to center the table horizontally css
table
{
margin-left: auto;
margin-right: auto;
}
Example 2: css center table on page
<table align="center">
...
</table>