美文网首页
居中对齐(position)

居中对齐(position)

作者: 默色留恋 | 来源:发表于2018-05-22 10:40 被阅读0次

项目中的总结

方法一
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为我点一颗爱心吧。

相关文章

网友评论

      本文标题:居中对齐(position)

      本文链接:https://www.haomeiwen.com/subject/ogchjftx.html