Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Recently I was looking through some website's code, and saw that every <div> had a class clearfix.

After a quick Google, I learnt that is is for IE6 sometimes, but what actually is clearfix? Could you provide some examples of a layout with clearfix, comparing to a layout without clearfix?

share|improve this question
7  
It is not for IE 6. A clearfix ensures that a div will fully expand to proper height to enclose its floating children. webtoolkit.info/css-clearfix.html – Sparky Dec 18 '11 at 19:05

5 Answers

up vote 77 down vote accepted

It's worth noting that today, the use floated elements for layout is getting more and more discouraged with the use of better alternatives.

  • display: inline-block - Better
  • Flexbox - Best (but limited browser support)

Flexbox is supported from Firefox 18, Chrome 21, Opera 12.10, and Internet Explorer 10, but no support for Safari (including Mobile Safari) or Android's old default browser.

(Perhaps once it's position is established completely, it may be the absolutely recommended way of laying out elements.)


A clearfix is a way for an element to automatically clear after itself, so that you don't need to add additional markup. It's generally used in float layouts where elements are floated to be stacked horizontally.

The clearfix is a way to combat the zero-height container problem for floated elements

A clearfix is performed as follows:

.clearfix:after {
   content: " "; /* Older browser do not support empty content */
   visibility: hidden;
   display: block;
   height: 0;
   clear: both;
}

Or, if you don't require IE<8 support, the following is fine too:

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

Normally you would need to do something as follows:

<div style="float: left;">Sidebar</div>
<div style="clear: both;"></div> <!-- Clear the float -->

With clearfix, you only need to

<div style="float: left;" class="clearfix">Sidebar</div>
<!-- No Clearing div! -->

Read about it in this article - by Chris Coyer @ CSS-Tricks

share|improve this answer
2  
I think this may explain it alot better. jqui.net/tips-tricks/css-clearfix instead of the . (dot) you have a white space appended so you dont get dots everywhere on your page :) same principle though. – Val May 29 '12 at 9:58
   
The dot won't show up since height: 0; is set. – Madara Uchiha Sep 12 '12 at 16:34
1  
either way for whatever reason a white space is a better practice than a dot, I have had problems with the dot on some browsers hence why I mentioned it :) a little improvement wont hurt :) – Val Sep 13 '12 at 8:43
@Val: Noted. Changed. – Madara Uchiha Sep 13 '12 at 14:51
1  
@MadaraUchiha, why is display:inline-block better than floating elements? The only problem I have is that displaying with inline block causes problems with there is whitespace between the tags, which isn't always easily controllable. – Walkerneo Feb 27 at 23:39
show 7 more comments

The other answers are correct. But I want to add that it is a relic of the time when people were first learning CSS, and abused float to do all their layout. float is meant to do stuff like float images next to long runs of text, but lots of people used it as their primary layout mechanism. Since it wasn't really meant for that, you need hacks like "clearfix" to make it work.

These days display: inline-block is a solid alternative (except for IE6 and IE7), although more modern browsers are coming with even more useful layout mechanisms under names like flexbox, grid layout, etc.

share|improve this answer
8  
In 2 years time, float layouts would be considered as taboo as table layouts. That's my dream :P – Madara Uchiha Dec 18 '11 at 19:13
1  
i just started learning css, like six months. After much BS_ trouble and looking through alternatives. My practice has come to this that there is no reason to use float ever. Whenever you use it half of the things break. I would only use it when i need things to conjure up inside a div. Inline-block is awesome. New box model is awesome. So no more hacks to go vertical align. – Muhammad Umer Mar 14 at 15:56

This is a way to deal with floated elements. Without it, parent containers of those elements might have broken height.

See this

An example

share|improve this answer
+1 So you're saying that it is only for the parent. but could CLEARFIX can be used in my example jsbin.com/ukaxav/33/edit to put B under A ? – Royi Namir Feb 12 at 20:13
why not use overflow:auto; – Muhammad Umer Mar 14 at 15:57

A technique commonly used in CSS float-based layouts is assigning a handful of CSS properties to an element which you know will contain floating elements. The technique, which is commonly implemented using a class definition called clearfix, (usually) implements the following CSS behaviors:

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    zoom: 1
}

The purpose of these combined behaviors is to create a container :after the active element containing a single '.' marked as hidden which will clear all preexisting floats and effectively reset the the page for the next piece of content.

share|improve this answer

Here is a different method same thing but a little different

the difference is the content dot which is replaced with a \00A0 == whitespace

More on this http://www.jqui.net/tips-tricks/css-clearfix/

.clearfix:after { content: "\00A0"; display: block; clear: both; visibility: hidden; line-height: 0; height: 0;}
.clearfix{ display: inline-block;}
html[xmlns] .clearfix { display: block;}
* html .clearfix{ height: 1%;}
.clearfix {display: block}

Here is a compact version of it...

.clearfix:after { content: "\00A0"; display: block; clear: both; visibility: hidden; line-height: 0; height: 0;width:0;font-size: 0px}.clearfix{ display: inline-block;}html[xmlns] .clearfix { display: block;}* html .clearfix{ height: 1%;}.clearfix {display: block}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.