margin塌陷解决方案--BFC

2018-04-26  本文已影响0人  月尚
<!DOCTYPE html>
<html lang="en">
<head>
    <style>
        *{
            margin: 0;
            padding: 0;
        }
        .test{
            /*以下任意一条都可以触发一个盒子的BFC,改变其渲染规则*/
            /*定位*/
            position: absolute;

            display: inline-block;

            /*浮动*/
            float: left;

            /*溢出的部分隐藏*/
            overflow: hidden;
        }
        .wrapper{
            height: 200px;
            width: 200px;
            background-color: black;
            margin-left: 50px;
            margin-top: 50px;

            /*解决方案一*/
            /*position: absolute;*/

            /*解决方案二*/
            /*overflow: hidden;*/

            /*解决方案三*/
            /*display: inline-block;*/

            /*解决方案四*/
            /*overflow: hidden;*/
        }
        .content{
            width: 100px;
            height: 100px;
            background-color: green;
            margin-left: 20px;
            /*问题出现这这里*/
            margin-top: 40px;

        }
    </style>
    <meta charset="UTF-8">
    <title>margin塌陷解决方案--BFC”</title>
</head>
<body>
    <div class="wrapper">
        <div class="content"></div>
    </div>

    <span>这是个bug,没有完美的解决方案,只能采用其他方式去弥补这个缺陷</span>
</body>
</html>

上一篇下一篇

猜你喜欢

热点阅读