Depending upon the design being produced, each of the below clearfix css solutions has its own benefits.
Micro-Clearfix [2011]
A much simpler, more up to date solution for general usage, (for now at least)
http://nicolasgallagher.com/micro-clearfix-hack/
/* For modern browsers */
.container:before,
.container:after {
content:"";
display:table;
}
.container:after {
clear:both;
}
/* For IE 6/7 (trigger hasLayout) */
.container {
zoom:1;
}
Overflow Property
This basic method is preferred for the usual case, when positioned content will not show outside the bounds of the container.
http://www.quirksmode.org/css/clearing.html
- explains how to resolve common issues related to this technique, namely, setting width: 100% on the container.
.container {
overflow: hidden;
display: inline-block; /* Necessary to trigger "hasLayout" in IE */
display: block; /* Sets element back to block */
}
Rather than using the display property to set "hasLayout" for IE, other properties can be used for trigering "hasLayout" for an element.
.container {
overflow: hidden; /* Clearfix! */
zoom: 1; /* Triggering "hasLayout" in IE */
display: block; /* Element must be a block to wrap around contents. Unnecessary if only using block-level elements. */
}
Another way to clear floats using the overflow property is to use the underscore hack. IE will apply the values prefixed with the underscore, other browsers will not. The zoom property triggers hasLayout in IE:
.container {
overflow: hidden;
_overflow: visible; /* for IE */
_zoom: 1; /* for IE */
}
While this works… it is ideal not to use hacks.
":after" Pseudo-element
This older "Easy Clearing" method has the advantage of allowing positioned elements to hang outside the bounds of the container, at the expense of more tricky CSS.
http://www.positioniseverything.net/easyclearing.html
.container {
display: inline-block;
}
.container:after {
content: " ";
display: block;
height: 0;
clear: both;
overflow: hidden;
visibility: hidden;
}
.container {
display: block;
}
Element using "clear" property
The quick and dirty solution:
<br style="clear:both" /> <!-- So dirty! -->
Using the clearing element solution is not ideal for many reasons:
- it adds unnecessary weight to your html file, which
- causes your site to load slower, and
- doesn't add any semantic value to your html, and
- makes your code look un-professional.
Choose wisely. =)