美文网首页
居中布局

居中布局

作者: SuperCoderMan | 来源:发表于2020-01-17 09:47 被阅读0次
    .container{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;        /* 垂直居中 */
    justify-content: center;    /* 水平居中 */
    }
    
    .container div{
    width: 100px;
    height: 100px;
    background-color: blue
    }
    

    相关文章

      网友评论

          本文标题:居中布局

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