佬唐

博客园 首页 新随笔 联系 订阅 管理

两种清除浮动的方法:

方法一:常用,在浮动元素的后面紧接着加一个<div style=”clear:both;”></div>
<div>
  <div style=”float:left;width:30%”></div>
  <div style=”float:right;width:68%;”></div>
  <div style=”clear:both;”></div>
</div>

方法二:浮动元素所在的父元素的样式里加一个"overflow:auto/hidden;"
<div style=”overflow:auto;”>
  <div style=”float:left;width:30%”></div>
  <div style=”float:right;width:68%;”></div>
  <div style=”clear:both;”></div>
</div>

嘿嘿嘿…

posted on 2009-12-30 21:10  佬唐  阅读(206)  评论(0)    收藏  举报