<div class="outer">
<div class="inner1">置中的元素</div>
</div>
.inner1 {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
/*設定元素的寬高*/
width: 100px;
height: 100px;
/*設定元素內的字*/
background: skyblue;
text-align: center;
line-height: 100px;
color: white
}
<div class="outer">
<div class="inner2">置中的元素</div>
</div>
.inner2 {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 100px;
height: 100px;
background: darkgreen;
text-align: center;
line-height: 100px;
color: white;
}