vote up 4 vote down star
5

I have the age old problem of a div wrapping a 2 column layout. My sidebar is floated so my container div fails to wrap the content & sidebar.

<div id="container">
  <div id="content">
  </div>
  <div id="sidebar">
  </div>
</div>

There seem to be numerous methods of fixing the clear bug in FF:

<br clear="all"/>
overflow:auto
overflow:hidden

etc.

But in my situation, the only one that seems to work correctly is the <br clear="all"/> solution, which is a little bit scruffy. overflow:auto gives me nasty scrollbars, and overflow:hidden must surely have side effects. Also, apparently IE7 is supposed to not suffer from this problem due to its incorrect behaviour, but again, in my situation its suffering the same as FF.

Whats the most reliable/best practice method currently available to us?

flag

6 Answers

vote up 4 vote down check

I always use the following css:

.cleaner {
  clear: both;
  font-size: 1px;
}

Then in the page, under my floated elements, I use this:

<div class='cleaner'>&nbsp;</div>

There is a niftyer method described over at Pathfinder Development that removes the need for extra HTML in your pages.

/* float clearing for IE6 */
* html .clearfix{
  height: 1%;
  overflow: visible;
}

/* float clearing for IE7 */
*+html .clearfix{
  min-height: 1%;
}

/* float clearing for everyone else */
.clearfix:after{
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
  font-size: 0;
}

In your HTML, you'd then use something like this:

<div id="container" class="clearfix">
  <div id="rail" style="float: left;"></div>
  <div id="content" style="float: left;"></div>
</div>
link|flag
thanks guys, so it looks like the only 'reliable' way involves sticking extra markup in the page then. Its not much different to <br clear="all"/> I suppose. – Pickledegg Oct 17 '08 at 8:53
I've updated my answer to include another, better method. – Mr. Matt Oct 17 '08 at 8:54
1  
This is great, but it does lead to a much bigger css file. Still, probably better than messy markup – Sam Murray-Sutton Feb 9 at 11:55
I suppose that depends on how you use it - if you add the clearfix class to the elements you want to clear on and you've minified your css, then the overhead is only a few bytes. If you repeat the rule for each element you want to clear, then yeah, it'll probably give you a much larger file. – Mr. Matt Feb 10 at 11:06
1  
Good point, I think I still think I'd go for clearfix than add clearing elements to the markup. – Sam Murray-Sutton Apr 21 at 9:48
show 1 more comment
vote up 2 vote down

Depending upon the design being produced, each of the below clearfix css solutions has it's own benefits.


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

.container {
    overflow: hidden;
    display: inline-block; /* Necessary to trigger "hasLayout" in IE */
}
.container {
    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.


":after" Pseudoclass

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;
}
link|flag
vote up 1 vote down

Have you tried this:

<div style="clear:both;"/>

I haven't had any problems with this method.

link|flag
I think the point is we're trying to avoid both extra markup and inline styles with this solution. It depends which compromise your happiest with I suppose – Sam Murray-Sutton Feb 9 at 11:55
vote up 1 vote down

I've found a bug in the official CLEARFIX-Method: The DOT doesn't have a font-size. And if you set the height = 0 and the first Element in your DOM-Tree has the class "clearfix" you'll allways have a margin at the bottom of the page of 12px :)

You have to fix it like this:

/* float clearing for everyone else */
.clearfix:after{
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
  font-size: 0;
}

It's now part of the YAML-Layout ... Just take a look at it - it's very interesting! http://www.yaml.de/en/home.html

link|flag
vote up 1 vote down

The overflow property can be used to clear floats with no additional mark-up:

.container { overflow: hidden; }

This works for all browsers except IE6, where all you need to do is enable hasLayout (zoom being my preferred method):

.container { zoom: 1; }

http://www.quirksmode.org/css/clearing.html

link|flag
overflow: hidden doesn't work in the PS3 browser. Not that most people need that to work, but it is the most significant thing blowing up my site in PS3 which we are trying to target for business reasons. Ugh. – dasil003 Aug 19 at 19:19
vote up 1 vote down

Using overflow:hidden/auto and height for ie6 will suffice if the floating container has a parent element.

Either one of the #test could work, for the HTML stated below to clear floats.

#test {
  overflow:hidden; // or auto;
  _height:1%; forces hasLayout in IE6
}

<div id="test">
  <div style="floatLeft"></div>
  <div style="random"></div>
</div>

In cases when this refuses to work with ie6, just float the parent to clear float.

#test {
  float: left; // using float to clear float
  width: 99%;
}

Never really needed any other kind of clearing yet. Maybe it's the way I write my HTML.

link|flag

Your Answer

Get an OpenID
or

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