css tips

作者: 楚阿吉 | 来源:发表于2018-07-04 14:03 被阅读0次

    高度不定的情况下,让文字水平居中

    display: -webkit-box;
    -webkit-box-pack: center;
    box-pack: center;
    -webkit-box-align: center;
    box-align: center;
    

    在内容宽高不定的情况下,让内容居中

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    

    相关文章

      网友评论

          本文标题:css tips

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