.main{
height:500px;
background: #555;
// 如下代码
display: flex;
justify-content: center;
align-items: center;
}
.item{
width:100px;
height:100px;
background: #ff5;
text-align: center;
}
<div class="main">
<div class="item"></div>
</div>