美文网首页
button文字垂直居中问题

button文字垂直居中问题

作者: CodingEleven | 来源:发表于2018-06-14 14:20 被阅读29次

    button组件中文字水平垂直居中显示

    wxml:

    <button class='button-item other-item' >C</button>
    

    wxss:

    .button-item{
                height: 100%;
                width:25%;
                border-radius: 0; 
                font-size: 1rem; 
                    //button设置成flex
                display: flex;
                align-items: center;
                justify-content: center;
    }
    
    计算器button文字垂直居中

    相关文章

      网友评论

          本文标题:button文字垂直居中问题

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