<div class="box">
<div class="center"></div>
</div>
.box {
background-color: #ccc;
position: relative;
height: 200px;//必须
}
.center {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
width: 100px;
height: 100px;
background-color: #fff;
}