如何应用clear来清除容器中的内部元素

时间:2014-03-25 03:22:38

标签: css css3 css-float

如何清除两者以包裹容器中的元素

JSFDDILE

.container{
     background:blue;

}
.box{
    float:left;
    width:75px;
    height:75px;
    margin:5px 5px;
    background:red;

}

.box:after{
    clear:both;
}

我希望盒子被容器翘曲! 感谢

1 个答案:

答案 0 :(得分:0)

你可以这样做:

Fiddle

.container:after{
    clear:both;
    content: " ";
    display: block;     
}

删除float并使用display: inline-block

Fiddle

.box{    
    width:75px;
    height:75px;
    margin:5px 5px;
    background:red;
    display: inline-block;
}