纯CSS实现垂直居中的几种方法

https://www.cnblogs.com/hutuzhu/p/4450850.html

方法7:display:flex和margin:auto 比较好,也使用中

1
2
3
4
5
.box8{
    display: flex;
    text-align: center;
}
.box8 span{margin: auto;}
原文地址:https://www.cnblogs.com/cnchengv/p/10854138.html