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.

Have a look at this JSFiddle. I am trying to get this float layout working in IE7. Works in everything else. The two float rights should be next to each other. But in IE7 it messes up.

Any ideas on a fix? Thanks for you help.

http://jsfiddle.net/c9Wmx/4/

*updated fiddle

http://jsfiddle.net/c9Wmx/5/ <-- this works but is there any way to do this without using an empty div?

share|improve this question
Serendipitious... I'm trying to solve the exact same problem now. Will certainly share any solution I find. – Eric J. Mar 14 '12 at 4:32
Try clear:right instead of both? I don't actually have IE7, but I feel it might fix it. – DanRedux Mar 14 '12 at 4:34
1  
@DanRedux Tried that. no luck. Do you have IE9? you can change browser mode to IE7 :) – banjo Mar 14 '12 at 4:36
Yes, I do. You could also try clearing the left side of the left div and the right side of the right div.. Also, putting div's between them with clear:both usually works cross-browser. – DanRedux Mar 14 '12 at 4:39
Had a look and it seems fine in my IE7 (apart from the fact that it took forever to load), looks the same as Opera/Dragon(Chrome) as far as I can tell. Version 7.0.5730.13CO. Or has the fiddle changed since you posted the question? – aaamos Mar 14 '12 at 4:43
show 1 more comment

3 Answers

You can give width to your .page DIV. like this:

.page{
    width:480px;
    float:right;
}
share|improve this answer
See below :) ********* – banjo Mar 14 '12 at 5:07

See this updated fiddle: http://jsfiddle.net/c9Wmx/6/

share|improve this answer
This works but the issue is the leftmost divs contain text and the widths change. So anything with less text still jumps up to the above line. – banjo Mar 14 '12 at 5:06
I am not getting exactly what you want to achieve can you make the example fiddle/screen shot with text so i can make my mind what to achieve. – Happy Singh Mar 14 '12 at 5:16

if it only happens in IE you can try putting the following in the head html tags.

<meta http-equiv="X-UA-Compatible" content="IE=7" />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
share|improve this answer
Specifically IE7 does NOT work as intended. Forcing later IE versions to render as IE7 will make the problem worse, not better. – Eric J. Mar 14 '12 at 5:13

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.