Answers for "how to center the table in html using margin"

0

how to center the table horizontally css

table
{ 
    margin-left: auto;
    margin-right: auto;
}
Posted by: Guest on August-20-2020
0

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;
}
Posted by: Guest on August-29-2020

Code answers related to "how to center the table in html using margin"

Browse Popular Code Answers by Language