外边距折叠问题

折叠外边距的大小,等于相邻边距中的最大值。

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        .t1{
            width:100%;
            height:20px;
            margin-bottom:10px;
            background:red;
        }
        .t2{
            width:100%;
            height:20px;
            margin-top:10px;
            background:blue;
        }

    </style>
</head>
<body>
    <div class="t1"></div>
    <div class="t2"></div>
</body>
</html>

1.png
可以看到,上下两个margin都是10px,按理叠加应该是20px,但实际是10px。
这种情况还好,但多个容器会存在多外边距折叠的问题。

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        .t1{
            width:100%;
            height:20px;
            margin-bottom:10px;
            background:red;
        }
        .t2{
            width:100%;
            
            margin-top:10px;
          
        }
        .t3{
            width:100%;
            height:20px;
            
            margin-top:20px;
            background:blue;
        }
    </style>
</head>
<body>
    <div class="t1"></div>
    <div class="t2">
        <div class="t3"></div>
    </div>
</body>
</html>

2.png
t3容器的margin-top为20px,居然跟外部的10px折叠了,取大值就是20px。
我们其实想要的是,这个margin-top为20px,只留在t2中,而不跟外部折叠。怎么办呢?
####解决方案
1、对容器使用overflow:auto(非visible即可)。
2、在两个外边距之间加上边框border、或内边距padding。
3、浮动元素、内联块。
4、绝对定位或固定定位。
5、flex弹性布局。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值