项目中的总结
方法一
position: absolute;
left:0;
right:0;
top:0;
bottom:0;
margin:auto;
方法二
position: absolute;
left:50%;
top:50%;
transform: translate(-50%,-50%);
-webkit-transform: translate(-50%,-50%);
方法三
width:100px;
height:100px;
position: absolute;
left:50%;
top:50%;
margin-left:-50px;
margin-top:-50px;