Clearfix:高度 1%

Clearfix: Height 1%

在ThemeForest的高级模板中,我看到很多模板都是采用这种方式来clearfix的:

.clearfix {
    height: 1%;
}

并为各种元素添加 class clearfix。

为什么身高 1%?有什么好方法吗?

您的主题包含 class 以便与 Internet Explorer 兼容,这是一件好事。

https://css-tricks.com/snippets/css/clear-fix/

https://perishablepress.com/lessons-learned-concerning-the-clearfix-css-hack/

What methods of ‘clearfix’ can I use?

明确设置高度是清除浮动的最安全(读起来不是最干净)的方法。在主题中,实际的 clearfix 实现将使用 :after 伪选择器来清除浮动。但是 IE6/7 不支持 :after 属性。因此,指定了 height: 1%。在 IE6/7 中有效。

来源http://www.pewpewlaser.com/articles/clearfix-ie