center table middle of page html code example
Example 1: how to place a table in center in css
.center {
margin-left: auto;
margin-right: auto;
}
Example 2: align table in middle of page
table#yourTable {
position: fixed;
left: 50%;
top: 50%;
margin: -(H/2)px -(W/2)px;
width: Wpx;
height: Hpx;
}