<div class="box box1"> <span>垂直居中</span> </div> .box1{ display: table-cell; vertical-align: middle; text-align: center; }
.box2{ display: flex; justify-content:center; align-items:center; }
通过translate来实现移位。.box3 span{
position: absolute;
top:50%;
left:50%;
width:100%;
transform:translate(-50%,-50%);
text-align: center;
}
.box4{
display: flex;
text-align: center;
}
.box4 span{
margin: auto;
}