⼩程序:⽂字居中对齐,垂直居中对齐刚刚接触CSS,⽤了各种⽅法都不⾏,
什么。。。
vertical-align:middle;
align-content:center;
align-items:center;
text-align:center;
都不能达到垂直状态下的居中对齐。
后来终于百度到⼀篇靠谱的帖⼦
blog.csdn/qq_32590631/article/details/80411024
亲测可⾏,马克以下:
--------------------------------------------------------------------
.
center-text{
display:flex;
align-items:center;
justify-content:center;css设置文字垂直居中
}
<view class="center-text" >ABC</view>
--------------------------------------------------------------------

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。