兼容性—margin

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style>
        .box{
            background: blue;
        }
        .content{
            height: 40px;
            background: red;
            margin: 50px;
        }
    </style>
</head>
<body>
    <div class="box">
        <div class="content"></div>
        <div class="content"></div>
    </div>
</body>
</html>

所有浏览器显示效果都一样

给父级加上border属性,除IE6/7以外都可正常显示,可以通过overflow和zoom触发BFC和layout属性解决

.box{
            background: blue;
            overflow: hidden;
            zoom: 1;
}

 

posted @ 2017-05-12 16:50  影子疯  阅读(264)  评论(0编辑  收藏  举报