📜  将文本放在 div 的中心 - 无论代码示例

📅  最后修改于: 2022-03-11 14:57:54.629000             🧑  作者: Mango

代码示例2
html, body {
    height: 100%;
}
.parent {
    width: 100%;
    height: 100%;
    display: table;
    text-align: center;
}
.parent > .child {
    display: table-cell;
    vertical-align: middle;
}