美文网首页
bug--margin塌陷

bug--margin塌陷

作者: 月尚 | 来源:发表于2018-04-26 16:09 被阅读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>
    

    相关文章

      网友评论

          本文标题:bug--margin塌陷

          本文链接:https://www.haomeiwen.com/subject/juhmlftx.html