元素水平垂直居中
程序员文章站
2022-04-30 12:02:51
...
总结一下自己比较实用的文字水平垂直居中的两种方法
1.tablecell
.div{
display: table-cell;
vertical-align: center;
text-align: center;
}
2.display:flex
.div{
display: flex;
justify-content: center;
align-items: Center;
}