HTML CSS 第一種 第二種 第三種 ...
HTML
<div class='father'>
<div class='child'></div>
</div>
CSS
第一種
.father {
display: table-cell;
text-align: center;
vertical-align: middle;
}
.child {
display: inline-block;
}
第二種
.father {
position: relative;
}
.child {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
第三種
.father {
display: flex;
justfy-content: center;
align-items: center;
}