欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

关于盒子的水平垂直居中几种方案

程序员文章站 2022-12-21 11:33:36
HTML CSS 第一种 第二种 第三种 ......

html

<div class='father'>
    <div class='child'></div>
</div>

css

第一种

    .father {
        display: table-cell;
        text-align: center;
        vertical-align: middle;
    }
    
    .child {
        display: inline-block;
    }

第二种

    .father {
        position: relative;
    }
    
    .child {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

第三种

    .father {
        display: flex;
        justfy-content: center;
        align-items: center;
    }