美文网首页
div水平垂直居中方式

div水平垂直居中方式

作者: bubbleoO0 | 来源:发表于2019-05-14 12:07 被阅读0次

    div水平垂直居中方式
    1
    div{
    width: 200px;
    height: 200px;
    background: green;
    position:absolute;
    left:0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    }
    2
    div{
    width:200px;
    height: 200px;
    background:green;
    position: absolute;
    left:50%;
    top:50%;
    margin-left:-100px;
    margin-top:-100px;
    }
    3
    div{
    width: 200px;
    height: 200px;
    background: green;
    position:absolute;
    left:50%; /* 定位父级的50% /
    top:50%;
    transform: translate(-50%,-50%); /
    自己的50% */
    }

    相关文章

      网友评论

          本文标题:div水平垂直居中方式

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