美文网首页
绝对居中

绝对居中

作者: 忆小遗 | 来源:发表于2017-06-01 13:58 被阅读0次

    一、css3

    .element {
    width: 600px; height: 400px;
    position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -50%); /* 50%为自身尺寸的一半 */
    }

    二、margin:auto

    .element {
    width: 600px; height: 400px;
    position: absolute; left: 0; top: 0; right: 0; bottom: 0;
    margin: auto; /* 有了这个就自动居中了 */
    }

    相关文章

      网友评论

          本文标题:绝对居中

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