什么是盒子模型中的外边距的折叠

目录

垂直外边距的重叠(折叠)

兄弟元素:

                特殊情况:

父子元素:


垂直外边距的重叠(折叠)

                相邻的垂直方向外边距会发生重叠现象

兄弟元素:

                兄弟元素间的相邻垂直外边距会取两者之间的较大值(两者都是正值)

                特殊情况:

                                        如果相邻的外边距一正一负,则取两者的和

                                        如果相邻的外边距都是负值,则取两者中绝对值较大的

兄弟元素之间的外边距的折叠,对于开发是有利的,所以我们不需要进行处理

<!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>
        .box1,.box2{
            width: 200px;
            height: 200px;
            font-size: 100px;

        }
        .box1{
            background-color: aqua;
            margin-bottom: 100px;

        }
        .box2{
        background-color: blue;
        margin-top: 100px;
        }
        
    </style>
</head>
<body>
    <div class="box1"></div>
    <div class="box2"></div>
</body>
</html>

 

父子元素:

                父子元素间相邻外边距,子元素的会传递给父元素(上外边距)

(因为对于父子元素来说他们共用一个上外边距,设置任意的一个上外边距,另外一个也会随之进行变化)

                父子外边距的折叠会影响到页面的布局,必须要进行处理

<!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>
        

        
        .box1{
            width: 200px;
            height: 200px;

            background-color: aqua;
            

        }
        .box2{
            width: 100px;
            height: 100px;
        background-color: blue;
        margin-top: 100px;
        }
        
    </style>
</head>
<body>
    <div class="box1">
        <div class="box2"></div>
    </div>
    
</body>
</html>

 

<!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>
        

        
        .box1{
            width: 200px;
            height: 200px;

            background-color: aqua;
            

        }
        .box2{
            width: 100px;
            height: 100px;
        background-color: blue;
        margin-top: 500px;
        }
        
    </style>
</head>
<body>
    <div class="box1">
        <div class="box2"></div>
    </div>
    
</body>
</html>

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

翘指

创作不易,一分也是爱

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值