Align an HTML table in the center of the page

Today I found this discussion which showed how to align a table in the center of the page in HTML:

table {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}

or:

table {
    width: 200px;
    margin-left: auto;
    margin-right: auto;
}

Leave a Reply