美文网首页
居中对齐布局

居中对齐布局

作者: 张先觉 | 来源:发表于2020-11-17 10:43 被阅读0次

    #实现居中对齐

    居中对齐效果图

    #margin + position

    设置position的top、bottom、right、left均为0,让其占满整个父级元素
    设置margin: auto auto;让其上下左右自动分配剩余空间。
    还有,一定要给居中元素设置width、height。

    代码如下:

    <!-- 居中对齐方式 -->
    <div class="wraper">居中对齐</div>
    
    <style>
        .wraper {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 300px;
            height: 300px;
            margin: auto auto;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            box-shadow: 0 0 5px #ccc;
        }
    </style>
    

    相关文章

      网友评论

          本文标题:居中对齐布局

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