vote up 1 vote down star

I've been running into a presentation issue with Internet Explorer. The following simple block of code renders as I would expect it to in Safari, FireFox, Chrome, and Opera. However it results in a noticeable space between the left and right floated DIV elements in both IE6 and IE7.

My question is: Is there a more correct way to achieve a float such that the same CSS works in both IE and the other browsers I've mentioned? If not, what is the best approach for getting rid of the space in Internet Explorer?

Thanks, Matt

<style>
.left {
	width:100px;
	float:left;
	border: solid black 1px;
}

.right {
	width: 100px;
	margin-left:100	px;
	border: solid red 1px;
}
</style>

<div class="left">
    a
</div>
<div class="right">
    b
</div>

Since this is a community wiki. I thought I'd post the working code with the solution proposed below by Plan B.

<style>
        .left {
    	width:100px;
    	border: solid black 1px;
        float:left;
    }

    .right {
    	width:100px;
    	border: solid red 1px;
    	float:left;
    }
    .clear {
    	clear:both;
    }
</style>

<div class="left">
    a
</div>
<div class="right">
    b
</div>
<div class="clear"></div>
c
flag

5 Answers

vote up 2 vote down check

Float them both left, add the following after both divs:

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

 .clear { clear: both; }

That or use padding instead of margins.

link|flag
This more or less worked. Although I did only add the clearing DIV after the last element (where I wanted the line break) – Matty Jan 15 at 19:31
vote up 0 vote down

I haven't figured out how to make my comment a reply to another comment!! But Brian Kim's answer is correct IF the problem is double-margin float bug. Plan B is wrong in the reply to the comment: yes floats are blocks, which is why it's perfectly safe to set display: inline on them. Smarter browsers will ignore it as the float must be in a block context. But in IE6, this setting somehow magically fixes its tendency to add doubled sidemargins. It is the standard fix for double-margin float bug in IE6. (Though Matty says this may have been 3-px jog instead)

link|flag
vote up 0 vote down

oohhh thanks for posting this article, this problem has been killing my life. i just want to ie(internally explode)!

link|flag
vote up 0 vote down

It is the double margin float bug. Described well here:

http://www.positioniseverything.net/explorer/doubled-margin.html

link|flag
1  
I don't think it's the double margin bug. This is more like the 3px margin bug – Matty Jan 15 at 19:36
vote up -1 vote down

Try adding display: inline to floated divs. I believe this is an IE bug of adding more margins to floated elements. display: inline worked for me in the past. Hope this helps.

link|flag
Floating an element automatically sets the display to block; you can't float an inline element. – Plan B Jan 15 at 19:12

Your Answer

Get an OpenID
or

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