Answers for "vertical-align:middle table html"

0

vertical-align tablerow

.cell {
    vertical-align: middle;
    display: table-cell;
}
Posted by: Guest on January-29-2022
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

Browse Popular Code Answers by Language