清除浮动
Contents
清除浮动3种方法
- 父级上增加属性overflow:hidden
- 在最后一个子元素的后面加一个空的div,给它样式属性 clear:both(不推荐)
- 使用成熟的清浮动样式类,clearfix1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950<style type="text/css">.list{width:210px;/* height:400px; */border:1px solid #000;margin:50px auto 0;list-style:none;padding:0;/*第一种清除浮动的方法:overflow: hidden;*/}.list li{width:50px;height:50px;background-color:gold;margin:10px;float:left;}/* .clearfix:before{content:"";display:table;}.clearfix:after{content:"";display:table;clear:both;} *//* 以上两个合并的写法(zoom是为了兼容IE)*/.clearfix:before,.clearfix:after{content:"";display:table;}.clearfix:after{clear:both;}.clearfix{zoom:1;}</style>