bug--margin塌陷

2018-04-26  本文已影响0人  月尚
<!DOCTYPE html>
<html lang="en">
<head>
    <style>
        *{
            margin: 0;
            padding: 0;
        }
        .wrapper{
            height: 200px;
            width: 200px;
            background-color: black;
            margin-left: 50px;
            margin-top: 50px;

            /*在父级加个顶,设置上边框,然后颜色设置为透明transparent,嘿嘿*/
            /*这样确实能达到目的,但是差1像素,还是不合格*/
            /*border-top: 1px solid red;*/
        }
        .content{
            width: 100px;
            height: 100px;
            background-color: green;
            margin-left: 20px;
            /*问题出现这这里*/
            margin-top: 20px;
            /*只有 margin-top 的值大于父级的 margin-top 的值时才有效*/
            /*并且会带着父级一起向下*/
            /*margin-top: 120px;*/
            /*margin-top: 300px;*/
            /*margin 没有“顶”*/

            /*那就在父级加个顶???设置上边框,然后颜色设置为透明transparent,嘿嘿*/

            /*这个也无效*/
            /*margin-bottom: 10px;*/
        }
    </style>
    <meta charset="UTF-8">
    <title>bug--margin塌陷</title>
</head>
<body>
    <div class="wrapper">
        <div class="content"></div>
    </div>
</body>
</html>
上一篇下一篇

猜你喜欢

热点阅读