让一个盒子居中的方法
1.父级:display: flex;
子级:margin: auto;
2.父级:position:relative;
width :600px;
height :600px;
子级:width :200px;
height :200px;
background : yellow
position: absolute ;
top:50%;
left:50%;
margin - left :-100px;
margin - top :-100px;