小程序开发中文本垂直居中

小程序开发中文本垂直居中

代码如下:
html:

文本文字

css:
.zym{
font-size: 22px;
background: blue;
width: 100%;
height: 200px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
结果如图所示:
在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/illusion2000/article/details/114490901