Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Here is my code,

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>[your title]</title>
    <style type="text/css">
    .a, .b, .c
    {
        float: left;
    }
    .b
    {
        clear: left;
    }
    </style>
</head>
<body>
<div class="a">1</div>
<div class="b">2</div>
<div class="c">3</div>
</body>
</html>

In IE8, firefox, chrome, safari, opera, the output will be:

1
23

However in IE7:

13
2

I have search for solutions two days already... anyone can help?

Cheers, bGiraffe

share|improve this question

4 Answers

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>[your title]</title>
    <style type="text/css">
    .a, .b, .c
    {
        float: left;
    }
    .b
    {
        clear: left;
    }
    </style>
</head>
<body>
<div class="a">1</div>
<div style="clear: left;"></div>
<div class="b">2</div>
<div class="c">3</div>
</body>

share|improve this answer
Thx for answing Durilai, but is there anyways to do it in css? I want to do it without source mark up:) – user296244 Mar 18 '10 at 7:05

this should fix it

.a, .b, .c { float: left; }
.b { clear: both; }
share|improve this answer
Why would that be any different than what he has? He has no right floats, so clear: left would do it. – Dustin Laine Mar 18 '10 at 15:45

Or you could use the clearfix technique.

http://www.positioniseverything.net/easyclearing.html

share|improve this answer
That is for pushing down the bottom edge of a container to wholly contain its floated children, which is a different problem altogether. – Tgr Oct 21 '10 at 14:10

FYI I asked the same question after reading this one and got a working solution from graphicdivine here:

http://stackoverflow.com/questions/2614566/ie7-and-ie8-float-clearing-without-adding-empty-elements

["Circular post reference error" ;)]

share|improve this answer

Your Answer

 
discard

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