赞
踩
前端面试常考,通过css实现父元素中子元素水平垂直居中
接下来介绍九种布局方式
初始html模板如下:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>flex实现元素水平垂直居中</title> <style> * { margin: 0; padding: 0; } #wrap { } #wrap .box { } </style> </head> <body> <div id="wrap" style="width: 500px;height: 500px;background: gray"> <div class="box" style="width: 200px;height: 200px;background: pink;"></div> </div> </body> </html>
初始效果如下
期望实现以下效果
#wrap {
position: relative;
}
#wrap .box {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
}
最常见的方法,这种方法只能在子元素宽高已知的情况下使用。
#wrap {
position: relative;
}
#wrap .box {
position: absolute;
top: 50%;
left: 50%;
margin-top: -100px;
margin-left: -100px;
}
与上一方法相同,只是用计算属性替代了偏移量和 margin
#wrap {
position: relative;
}
#wrap .box {
position: absolute;
top: calc(50% - 100px);
left: calc(50% - 100px);
}
与二、三方法相似,不过使用 translate 对子元素的宽高没有要求,在未知宽高的情况下依然适用。
#wrap {
position: relative;
}
#wrap .box {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
最简单的方式,子元素宽高已知未知的情况都适用。
#wrap {
display: flex;
}
#wrap .box {
margin: auto;
}
flex其他方式可参考flex教程
可能存在兼容问题
#wrap {
display: flex;
justify-content: center;
align-items: center;
}
#wrap .box {
}
#wrap {
display: -webkit-box;
-webkit-box-pack: center;
-webkit-box-align: center;
}
#wrap .box {
}
低版本IE会有问题
#wrap {
display: table-cell;
vertical-align: middle;
}
#wrap .box {
margin: auto;
}
低版本IE会有问题
#wrap {
display: table-cell;
vertical-align: middle;
text-align: center;
}
#wrap .box {
display: inline-block;
}
如果还有其他推荐布局,欢迎大家私信或评论区分享
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。