美文网首页
微信小程序文字水平垂直居中对齐问题(完美解决方案)

微信小程序文字水平垂直居中对齐问题(完美解决方案)

作者: ljh_10e3 | 来源:发表于2019-06-23 16:40 被阅读0次

    我们知道常用的居中对齐方式有很多种例如:

    text-align:center;

    align-items:center;

    justify-content: center;

    margin: auto; #子容器在父容器中居中

    但是在view中的文字对齐却不能简单的使用text-align: center;来实现,这种办法只能实现文字的水平居中,

    要实现水平垂直居中

    可使用如下方案

    .td {

    display: flex;

    align-items: center;

    justify-content: center;

    }

    相关文章

      网友评论

          本文标题:微信小程序文字水平垂直居中对齐问题(完美解决方案)

          本文链接:https://www.haomeiwen.com/subject/hwfwqctx.html