table align center code example
Example 1: how to center a table in html
<table style="border:1px solid black;margin-left:auto;margin-right:auto;">
Example 2: how to center the table horizontally css
table
{
margin-left: auto;
margin-right: auto;
}
Example 3: how to place a table in center in css
.center {
margin-left: auto;
margin-right: auto;
}
Example 4: css center table on page
<table align="center">
...
</table>
Example 5: how to align table in html
.centerTable { margin: 0px auto; }