首页 相关文章 CSS:浮动清理不使用 clear:both标签

CSS:浮动清理不使用 clear:both标签

在进行浮动布局时,大多数人都深知,在必要的地方进行浮动清理:div style="clear:both;"/div。
例如:
div style="background:#666;" !-- float container --
div style="float:left; width:30%; height:40px;background:#EEE; "Some Content/div
/div
此时预览此代码,我们会发现最外层的父元素float container,并没有显示。这是因为子元素因进行了浮动,而脱离了文档流,导致父元素的height为零。
若将代码修改为:
div style="background:#666;" !-- float container --
div style="float:left; width:30%; height:40px;background:#EEE; "Some Content/div
div style="clear:both"/di...[ 查看全文 ]

2016-02-19 标签:

CSS:浮动清理不使用 clear:both标签的相关文章

手机页面
收藏网站 回到头部