Answers for "table to center of page html"

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
0

how to align table in html

.centerTable { margin: 0px auto; }
Posted by: Guest on June-23-2020

Code answers related to "table to center of page html"

Browse Popular Code Answers by Language