1. 程式人生 > >css中清除浮動的方法

css中清除浮動的方法

over class hid div css overflow 影響 oat 高度

1、浮動後會影響別的元素,可以用clear:both來清除浮動。

例如<div class="box1"></div>

<div class="box2"></div>

css: .box1{ float:left;} .box2{ clear:both ; }

2、子級浮動會導致父級高度塌陷,可以使用overflow:hidden找回高度

css中清除浮動的方法