.parent {
position: relative;
width:100%;
height:100%;
}
.chirld {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%)
}
複製代碼
.parent {
display:flex;
justify-content:center;
align-items:center
}
複製代碼
.parent {
position: fixed;
width: 100px;
height: 100px;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin:auto;
}
複製代碼