假设:
<div class="content-wrap" >
<div class="content">
</div>
</div>
第一种:
.content-wrap{
width:300px;
height:300px;
position:relative;
}
.content{
width: 100px;
/*这里的width和height可以使用百分比,那么margin也应该设置为百分比,并且满足为自身高度的一半*/
height: 100px;
position: absolute;
background: lightcoral;
margin-top: -50px;
margin-left: -50px;
/*margin为自身高度的一半*/
top: 50%;
left: 50%;
}
第二种:使用flex
.content-wrap{
display: flex;
align-items: center; /*定义body的元素垂直居中*/
justify-content: center; /*定义body的里的元素水平居中*/
}
第三种:
.content-wrap {
height: 800px;
background: lightblue;
}
.child {
background: orange;
position: relative;
margin: 0 auto;
width: 200px;
height: 200px;
transform: translateY(-50%);
top: 50%;
}