盒子水平垂直居中的几种方式

  • 1、使用Flex属性主轴交叉轴都居中

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        *{
            margin: 0;
            padding: 0;
        }
        .wrap{
            width: 100px; height: 100px;
            border: red solid 2px;
        }
        .block{
            width: 50px; height: 50px;
            background: #6c5ce7;
        }
        .wrapFlex{
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .blockFlex{

        }
    </style>
</head>
<body>
    <div class="wrap wrapFlex">
        <div class="block blockFlex"></div>
    </div>
</body>
</html>

在这里插入图片描述

  • 2、Flex属性 + 子元素 margin

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        *{
            margin: 0;
            padding: 0;
        }
        .wrap{
            width: 100px; height: 100px;
            border: red solid 2px;
        }
        .block{
            width: 50px; height: 50px;
            background: #6c5ce7;
        }
        .wrapFlex{
            display: flex;
        }
        .blockFlex{
            margin: auto;
        }
    </style>
</head>
<body>
    <div class="wrap wrapFlex">
        <div class="block blockFlex"></div>
    </div>
</body>
</html>

在这里插入图片描述

  • 3、Flex属性 + 子元素 align-self

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        *{
            margin: 0;
            padding: 0;
        }
        .wrap{
            width: 100px; height: 100px;
            border: red solid 2px;
        }
        .block{
            width: 50px; height: 50px;
            background: #6c5ce7;
        }
        .wrapFlex{
            display: flex;
        }
        .blockFlex{
            align-self: center;
            margin: 0 auto;
        }
    </style>
</head>
<body>
    <div class="wrap wrapFlex">
        <div class="block blockFlex"></div>
    </div>
</body>
</html>

在这里插入图片描述

  • 4、grid 布局 + 子元素 margin

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        *{
            margin: 0;
            padding: 0;
        }
        .wrap{
            width: 100px; height: 100px;
            border: red solid 2px;
        }
        .block{
            width: 50px; height: 50px;
            background: #6c5ce7;
        }
        .wrapFlex{
            display: grid;
        }
        .blockFlex{
            margin: auto;
        }
    </style>
</head>
<body>
    <div class="wrap wrapFlex">
        <div class="block blockFlex"></div>
    </div>
</body>
</html>

在这里插入图片描述

  • 5、 只使用 margin 属性

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        *{
            margin: 0;
            padding: 0;
        }
        .wrap{
            width: 100px; height: 100px;
            border: red solid 2px;
        }
        .block{
            width: 50px; height: 50px;
            background: #6c5ce7;
        }
        .allwrap{

        }
        .allblock{
            margin: calc(50% - 25px) auto;
        }
    </style>
</head>
<body>
    <div class="wrap allwrap">
        <div class="block allblock"></div>
    </div>
</body>
</html>

在这里插入图片描述

  • 6、绝对定位 position: absolute

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        *{
            margin: 0;
            padding: 0;
        }
        .wrap{
            width: 100px; height: 100px;
            border: red solid 2px;
            position: relative; /* 子元素定位以此为基准 */
        }
        .block{
            width: 50px; height: 50px;
            background: #6c5ce7;
        }
        .allwrap{

        }
        .allblock{
            position: absolute;
            left: 0;
            top: 0;
            right: 0;
            bottom: 0;
            margin: auto;
        }
    </style>
</head>
<body>
    <div class="wrap allwrap">
        <div class="block allblock"></div>
    </div>
</body>
</html>

在这里插入图片描述

  • 7、绝对定位 position: absolute + 动画 transform

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        *{
            margin: 0;
            padding: 0;
        }
        .wrap{
            width: 100px; height: 100px;
            border: red solid 2px;
            position: relative; /* 子元素定位以此为基准 */
        }
        .block{
            width: 50px; height: 50px;
            background: #6c5ce7;
        }
        .allwrap{

        }
        .allblock{
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%,-50%);
        }
    </style>
</head>
<body>
    <div class="wrap allwrap">
        <div class="block allblock"></div>
    </div>
</body>
</html>

在这里插入图片描述

  • 8、表格属性 display: table-cell;

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        *{
            margin: 0;
            padding: 0;
        }
        .wrap{
            width: 100px; height: 100px;
            border: red solid 2px;
        }
        .block{
            width: 50px; height: 50px;
            background: #6c5ce7;
        }
        .allwrap{
            display: table-cell;
            vertical-align: middle;
            text-align: center;
        }
        .allblock{
            display: inline-block;
        }
    </style>
</head>
<body>
    <div class="wrap allwrap">
        <div class="block allblock"></div>
    </div>
</body>
</html>

在这里插入图片描述

  • 9、当只有一行的时候,对里面的文字进行水平垂直居中

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        *{
            margin: 0;
            padding: 0;
        }
        .online{
            width: 100px; height: 100px;
            background: #6c5ce7;
            line-height: 100px;
            text-align: center;
        }
    </style>
</head>
<body>
    <div class="online">123</div>
</body>
</html>

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值