css3 div垂直居中

来源:互联网 发布:紫薇圣人 知乎 编辑:程序博客网 时间:2024/06/07 13:10
css3 div垂直居中
用CSS3中的flexbox 布局模式设置垂直居中:
.vertical-container{        display: -webkit-flex;        display: flex;        -webkit-align-items: center;              align-items: center;        -webkit-justify-content: center;              justify-content: center;    }
0 0