项目中的总结
方法一
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;
以上三种方法的父级必须position:relative;(当然它的parents级别的也是可以);个人偏爱方法一哦
喜欢的话就点击下方的star为我点一颗爱心吧。
网友评论