标签: css css3 css-float
如何清除两者以包裹容器中的元素
JSFDDILE
.container{ background:blue; } .box{ float:left; width:75px; height:75px; margin:5px 5px; background:red; } .box:after{ clear:both; }
我希望盒子被容器翘曲! 感谢
答案 0 :(得分:0)
你可以这样做:
Fiddle
.container:after{ clear:both; content: " "; display: block; }
或强>
删除float并使用display: inline-block
float
display: inline-block
.box{ width:75px; height:75px; margin:5px 5px; background:red; display: inline-block; }