美文网首页
css绝对居中

css绝对居中

作者: Hello杨先生 | 来源:发表于2019-11-25 20:26 被阅读0次
.conter{

    width: 600px; height: 400px;

    position: absolute; left: 50%; top: 50%;

    margin-top: -200px;    /* 高度的一半 */

    margin-left: -300px;    /* 宽度的一半 */

}
.conter{

    width: 600px; height: 400px;

    position: absolute; left: 50%; top: 50%;

    transform: translate(-50%, -50%);    /* 50%为自身尺寸的一半 */

}
.conter{

    width: 600px; height: 400px;

    position: absolute; left: 0; top: 0; right: 0; bottom: 0;

    margin: auto;    /* 有了这个就自动居中了 */

}

相关文章

网友评论

      本文标题:css绝对居中

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