table is higher than that of div elements, so modern layouts have abandoned table layouts unless tables are needed.
question: so is this redrawing the same cost as using a table layout directly?
.father{
display:table;
}
.father children{
display: table-cell;
vertical-align: middle;
}
additional question: what is the high cost of redrawing table?