猿创征文 | 【CSS】-- 实现垂直居中的五种方法(含代码)

19 篇文章 0 订阅

一、定位加margin:auto;

    <style>
        .out{
            width: 300px;
            height: 300px;
            background-color: bisque;
            position: relative;
        }
        .in{
            width: 100px;
            height: 100px;
            background-color: aqua;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0; 
            margin: auto;
        }
    </style>

 二、flex布局/grid布局+主轴与交叉轴对齐方式

    <style>
        .out{
            display: flex;
            width: 300px;
            height: 300px;
            background-color: bisque;
            /* 或者 */
            /* display: grid; */
            /* 设置主轴对齐方式 */
            justify-content: center;
            /* 设置交叉轴对齐方式 */
            align-items: center;
        }
        .in{
            width: 100px;
            height: 100px;
            background-color: lightcoral;
        }
    </style>

三、flex+外边距

    <style>
        .out{
            display: flex;
            width: 300px;
            height: 300px;
        }
        .in{
            width: 100px;
            height: 100px;
            background-color: lightcoral;
            margin: auto;
        }
    </style>

四、边框盒子+内边距

    <style>
        .out{
            width: 400px;
            height: 400px;
            background-color: bisque;
            box-sizing: border-box;
            /* 内边距设置为父元素宽度减子元素盒子宽度的差的一半 */
            padding: 150px;
        }
        .in{
            width: 100px;
            height: 100px;
            background-color: lightgreen;
        }
    </style>

五、定位+两边外边距

    <style>
        .out{
            position: relative;
            width: 300px;
            height: 300px;
            background-color: palegreen;
        }
        .in{
            position: absolute;
            width: 100px;
            height: 100px;
            background-color: palevioletred;
            top: 50%;
            left: 50%;
            margin-left:-50px;
            margin-top:-50px;
        }
    </style>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值