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