css不定宽高垂直居中方法

第一个方法:用css3的translate()
.main{
height: 500px;
text-align: center;
border:1px solid #000;
position: relative;
}
.main-box{
position: absolute;
width: 50%;
top: 50%;
left: 50%;
transform:translateX(-50%) translateY(-50%);
border:1px solid red;
}

第二种方法:
利用 margin:auto;上下左右居中
.main-box{
position: absolute;
top:0;
left:0;
bottom:0;
right:0;
width:50%;
height:50%;
margin:auto;
line-height: 50%;
border:1px solid red;
}
第三种:利用dispaly:flex(弹性布局)弹性盒模型

.main{
display: flex;
align-items: center;
justify-content: center;
height: 500px;
border:1px solid #000;
}
.main-box{
width:50%;
height:50%;
border:1px solid red;
}

你可能感兴趣的:(css,前端,css,居中)