另一种清除浮动元素的方法(FFIE 6IE 7IE 8 Beta)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了另一种清除浮动元素的方法(FFIE 6IE 7IE 8 Beta)相关的知识,希望对你有一定的参考价值。
This method uses the "min-height" property to give "hasLayout" in IE 7, "height" property for IE 6 and the pseudo-element ":after" and "content" property for Gecko based and IE 8 Beta.
.clearfix:after{content: ""; display: block; clear: both; height: 0; visibility: hidden;} .clearfix{min-height: 0; height: 0;}
以上是关于另一种清除浮动元素的方法(FFIE 6IE 7IE 8 Beta)的主要内容,如果未能解决你的问题,请参考以下文章
CSS 另一种清除浮动元素的方法(FF,IE 6,IE 7,IE 8 Beta)