码迷,mamicode.com
首页 > 其他好文 > 详细

实现已知或者未知宽度的垂直水平居中

时间:2018-11-21 15:45:20      阅读:221      评论:0      收藏:0      [点我收藏+]

标签:水平   flex   form   ati   width   宽度   top   middle   pos   

.wraper {
position: relative;
.box {
position: absolute;
top: 50 %;
left: 50 %;
width: 100px;
height: 100px;
margin: -50px 0 0 - 50px;
}
}
// 2
.wraper {
position: relative;
.box {
position: absolute;
top: 50 %;
left: 50 %;
transform: translate(-50 %, -50 %);
}
}
// 3
.wraper {
.box {
display: flex;
justify-content: center;
align-items: center;
height: 100px;
}
}
// 4
.wraper {
display: table;
.box {
display: table-cell;
vertical-align: middle;
}
}

实现已知或者未知宽度的垂直水平居中

标签:水平   flex   form   ati   width   宽度   top   middle   pos   

原文地址:https://www.cnblogs.com/Tony100/p/9994050.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!