美文网首页
元素居中的几种方法

元素居中的几种方法

作者: 花泽冒菜 | 来源:发表于2018-10-06 12:54 被阅读0次
    1. flexbox
    <div class="container">
        <div class="div1">div1</div>
    </div>
    
    .container {
        width: 300px;
        height: 300px;
        border: 1px solid black;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .div1 {
        width: 100px;
        height: 100px;
        background: #039748;
    }
    
    1. 绝对定位 + transform
    <div class="container">
        <div class="div1">div1</div>
    </div>
    
    .container {
        width: 300px;
        height: 300px;
        border: 1px solid black;
        position: relative;
    }
    .div1 {
        width: 100px;
        height: 100px;
        background: #039748;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    

    相关文章

      网友评论

          本文标题:元素居中的几种方法

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