标签:splay abs 方法 css垂直居中 lex 一半 relative isp 定位
html结构
<div class="container">
<div class="item">垂直居中</div>
</div>
css
<style>
.container {
width: 500px;
height: 500px;
border: 1px solid #000;
position: relative;
}
</style>
在父容器中设置
.container{
displayy: flex;
justify-content: center;
align-items: center
}
分为已知宽高和未知宽高两种情况
.item {
width: 100px;
height: 100px;
border: 1px solid red;
position: absolute;
top: 50%;
left: 50%;
margin-left: -50px;
margin-top: -50px;
}
/*使用traansform*/
.item {
border: 1px solid red;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%)
}
标签:splay abs 方法 css垂直居中 lex 一半 relative isp 定位
原文地址:https://www.cnblogs.com/dobeco/p/11385677.html