微信小程序:文字居中对齐,垂直居中对齐


刚刚接触CSS,用了各种方法都不行,

什么。。。

vertical-align: middle;
align-content: center;
align-items: center;
text-align: center;
 
都不能达到垂直状态下的居中对齐。
 
后来终于百度到一篇靠谱的帖子
https://blog.csdn.net/qq_32590631/article/details/80411024
 
亲测可行,马克以下:
--------------------------------------------------------------------
.center-text{
display: flex;
align-items: center;
justify-content: center;
}
 
<view class="center-text" style="width: 100px;height:100px" >ABC</view>
--------------------------------------------------------------------


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM