前台差不多做好了

不能说是bug,本身是因为浮动定义,浮动子元素脱离文档流,自身还在文档流上,这样自身就似乎没有高度了

1.在最后加上一个空div,clear:both;,缺点,引入冗余div

2.本身也浮动,当然,这样很多时候都是不现实的
3.:after伪类

.divclassname{
zoom:1;

}
.divclassname:after{
content:"\0020";
height:0;
display:block;
clear:both;

zoom:1;
}

4.overflow:hidden;_height:1%;

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/11225.html