margin塌陷

img

    <style>
        * {
            margin: 0;
            padding: 0;
        }
        .container {
            width: 200px;
            height: 200px;
            background-color: pink;
            /* 解决margin塌陷问题 */
            overflow: auto;
        }
        .box {
            margin-top: 20px;
            width: 50px;
            height: 50px;
            background-color: red;
        }
    </style>
<body>
    <div class="container">
        <div class="box"></div>
    </div>
</body>

img

margin-bottom也会造成塌陷,只有当父盒子container高度设置为auto,再给子盒子设置margin-bottom:xpx;的时候,才会造成塌陷。

posted @ 2023-02-02 14:17  Dou-D  阅读(29)  评论(0)    收藏  举报