<style>
        .img{width:100px;height:100px;background:red;float:left;}
        .box:after{
            content:"";
            display:block;
            clear:both;
        }
    </style>
</head>
<body>
    <div class="box">
    <div class="img"></div>
    </div>
</body>

1、给父级添加after伪类,可以清楚浮动

2、给父级设置overflow:hidden可以清除浮动

posted on 2017-03-19 11:29  floated  阅读(369)  评论(0编辑  收藏  举报