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

I'm pretty accustomed to clearing my floats by using <br style="clear:both"/> but stuff keeps on changing and I am not sure if this is the best practice.

There is a CSS hack (from positioneverything) available that lets you achieve the same result without the clearing div. But... they claim the hack is a little out of date and instead you perhaps should look at this hack. But.. after reading through 700 pages of comments :) it seems there may be some places the latter hack does not work.

I would like to avoid any javascript hacks cause I would like my clearing to work regardless of javascript being enabled.

What is the current best practice for clearing divs in a browser independent way?

share|improve this question
1  
When I read this title, I thought it was going to be a stupid question, answered with "float f = 0.0". My apologies, I haven't had my coffee this morning yet :-) – paxdiablo Jan 29 '09 at 1:36
Anyway, the answer to any question with "Javascript" and "browser independent" is jQuery. – paxdiablo Jan 29 '09 at 1:37
@Pax: me too. I edited the title. – Michael Haren Jan 29 '09 at 1:51
@Michael, I like the new title :) – Sam Saffron Jan 29 '09 at 2:04
1  
@SamSaffron The links in your question point to pages that contain multiple solutions for clearing floats. So, it is not clear which methods you are referring to... (btw, I believe overflow:auto on the parent is the best solution) – Šime Vidas Dec 9 '11 at 13:45

14 Answers

I really don't like using extra non-semantic markup, so I stay away from using a clearing element. Instead of just apply overflow: hidden; to the parent of the float(s) to clear them. Works cross browser, no problem. I believe overflow: auto; also works.

Obviously, it won't work if you want to use a different overflow property, but because of the IE6 expanding box bug, I rarely have a reason to purposely overflow my containers.

See more info on using overflow instead of clear to avoid adding extra markup.

share|improve this answer
+1 for this - I was searching for a solution other than adding another div for the sake of clearing a floating element. This is perfect. Thanks! – james lewis Jun 22 '12 at 16:44
+1 for "overflow: hidden", your a legend – RobJohnson Jan 29 at 20:58

I've found that most often (myself included), this method is used in the html:

<div class="clear"></div>

With this in the stylesheet:

.clear {clear: both;}
share|improve this answer
You might want to remove the . in class=".clear". – dylanfm Jan 29 '09 at 1:46
No, I don't think so; because he's using a DIV, you'll need to use a dot. – Pat Jan 29 '09 at 3:00
Dot should be in stylesheet only - it's been fixed now. – noswonky Jan 29 '09 at 4:09
2  
@tylerl I agree, people often forget that indirection can hurt clarity. And I think "separating semantics & presentation" is overrated (but that's a whole other debate). But in this case, the class saves a bit of typing (I use 'class=cb' which is smaller). – Dustin Boswell Nov 10 '10 at 7:47
1  
Separate things is, yes, a nice and useful pattern. Let's say Internet Explorer 10 comes with a new bug (what is not so difficult), where you need to put zoom: 1 to clear float (just a fake example, to ilustrate). If you use style="clear: both", you will need to update thousands of lines of code to add the "zoom: 1" to make it work on IE10. Who uses class="clear" will need to update 1 line in CSS. – Rodrigo Manguinho Dec 14 '11 at 17:39
show 2 more comments
.clear-fix:after
{
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.clear-fix
{
    zoom: 1;
}

<div class="clear-fix">
    <div class="left">Some Div With Float</div>
    <div class="left">Another Div With Float</div>
</div>

In my opinion this is the best way. No need of extra DOM elements or wrong usage of overflow or any hacks.

share|improve this answer
3  
I think this is the most beautiful solution. If you're going for this one, please don't forget to add this in a IE specific stylesheet, otherwise IE 7 will be sad. .clear-fix { zoom: 1; } – Filip Dec 9 '11 at 13:44
You are right Filip. I edited my response for the complete solution. +1 for your observation. – Rodrigo Manguinho Dec 9 '11 at 15:43
Mmmh, that's look VERY interesting :) Thanks – haltabush Feb 27 '12 at 21:43
1  
Have been using this since the dawn of times. In 2012, is this really still the authoritative solution??? I was hoping 5 generations of newer browsers would have made a more direct solution possible... – jgivoni May 2 '12 at 13:48

there's a bit of voodoo I tend to find myself using.

<span class="clear"></span> 

span.clear { 
    display: block; 
    clear: both; 
    width: 1px; 
    height: 0.001%;
    font-size: 0px; 
    line-height: 0px; 
}

This combination magically fixes a whole host of browser problems, and I've just used it for so long I've forgotten what problems it solves.

share|improve this answer
instead of span display:block why not just put in a div tag? – aleemb Feb 3 '10 at 12:54
2  
@aleemb : It's useful when you have to use it inside <p> and similar cases, where <div> cannot be use — IMHO. – its_me Mar 19 '12 at 13:00

jQuery UI has some classes to fix this as well (ui-help-clearfix does something).

Technically <div style="clear:both;"></div> is better than <br style="clear:both;" /> because an empty div will have 0 height, thereby just clearing the floats. The <br /> will leave a space. I see nothing wrong with using the <div/> method.

share|improve this answer
+1 for using jQuery – Michael Robinson Jul 19 '10 at 3:40

You may want to look at how some CSS frameworks handle this. Here's blueprint's (look at the end of the code).

share|improve this answer
yerp, bluprint is using the hack from positioneverything, and positioneverything seem to be pointing at the overflow trick, this stuff makes my head hurt :) – Sam Saffron Jan 29 '09 at 1:45
yeah. I'd stick with what you're doing. It's not intuitive to those new to css layout, but it's very simple and easy. – Michael Haren Jan 29 '09 at 1:53

I'm from the <br class='clear'/> school myself, but another solution might be to use the clear class on the element immediately following the floated one. So instead of:

<div class='float_left'>...</div>
<br class='clear'/>
<div class='something_else'>...</div>

You could assign multiple classes to the element you want cleared:

<div class='float_left'>...</div>
<div class='something_else clear'>...</div>

In practice though, I tend to use <br class='clear'/> pretty often. It works nicely when you have an element floating inside another element and need to clear it so that the parent recognizes the height of the content.

share|improve this answer

The best way is put "overflow:auto;" in div container. It is more clean.

div.container {overflow: auto;}

more details in: http://www.quirksmode.org/css/clearing.html

share|improve this answer
I like this solution, it works (for what I tested) and you don't need to add other tags. – mrmuggles Jun 15 '12 at 3:14

Simply adding overflow:auto; to the parent element containing the floating element(s) is an excellent fix in most cases.

SAMPLE HTML:

<div class="container">
    <div class="child">...</div>
    <div class="another-child">...</div>
<div>

CSS:

.child {
    float: right;
    word-wrap: break-word;
}

.child img {
    max-width: 100%;
    height: auto; /* of course, this is default */
}

.child p {
    word-wrap: break-word;
}

.container {
    overflow: auto;
}

As with any other method, there are some gotchas with overflow:auto; as well. In order to fix them — apply max-width:100%; height: auto; for images, and word-wrap: break-word; for text contained within the floating elements.

[source]

share|improve this answer
<br clear="all"/>

works well aswell. The benefit to this over using class="clear" is that it just works and you don't have to setup extra rules in your css to make it so.

share|improve this answer
Is this xhtml strict 1.0 compatible? – cjk Jan 29 '09 at 12:20
XHTML 1.0 Transitional only I believe – Birk Jan 29 '09 at 18:23
But to me if you're going for strict you shouldn't be using many of these things because they are markup for the purpose of presentation only. – Birk Jan 29 '09 at 18:24

Really you should use class that way you can re-use your clear both anywhere in your html see below example. I tend to use my class="clearBoth" in a line break tag
but I'm sure you can use it in any tag, best just to test it and with class you can test it anywhere by adding the class="clearBoth" or whatever you decided to call it attribute.

Example:

CSS:

.clearBoth { 
clear: both; }

The . denotes it can be used as a class.

HTML

<br class="clearBoth"/>

Referancing the CSS using the class="" attribute and ending the tag for xhtml validation.

Hope this helps.

Cool Hand Luke

Ps w3schools is always a handy way of find out such information W3Schools

share|improve this answer

Yet another is the "Float nearly everything" whereby you float the parent on the same side as the floated child.

share|improve this answer
.floatWrapper {
   overflow:hidden;
   width:100%;
   height:100%;
}
.floatLeft {
   float:left;
}


<div class="floatWrapper">
    <div class="floatLeft">
        Hello World!
    </div>
    <div class="floatLeft">
       Whazzzup!
    </div>
</div>
share|improve this answer

I prefer using with .clear { clear: both; } over .clear-fix:after blah blah, because when you look at the markup it's clearer what's happening. Just FYI here's my tutorial on how to use float and clear that I wrote a while ago.

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.