Sub-box centered in the parent box style

.father{
position:relative;
width:600px;
height:600px;
}
.son{
width:200px;
height:200px;
position:absolute;
left:50%;
top:50%;
transform:translate(-50%,-50%)
}

 

Guess you like

Origin www.cnblogs.com/zhaodz/p/11563667.html