6.8 避免外边距重叠

63 阅读1分钟
<!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>
        /* div{
            width: 100px;
            height: 100px;
            background-color: red;
        } */
        .cube:first-child{
            width: 100px;
            height: 100px;
            background-color: red;
            margin-bottom: 10px;
        }
        .cube:last-child{
            width: 100px;
            height: 100px;
            background-color: red;
            margin-top: 20px;
            /* 开启bfc属性 */
            /* display: inline-block; */
            /* position: absolute; */
            /* float: left; */
        }
        .container{
            /* 开启bfc属性 */
            overflow: hidden;
        }
    </style>
</head>
<body>
    <div class="container">
        <div class="cube"></div>
    </div>

    <div class="cube"></div>
</body>
</html>