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.

I'm trying to create a dynamic site where I have three floating boxes next to eachother. They are 33.33% in width each. The container div around them is 75% in width.

I've found an article about the problem here: CSS: Jumping columns
I've also found an example of the same problem here: Jumping columns example

Drag the window size to see the jumping in IE7 or earlier.

Anyone knows if it's possible to get around this? (without Javascript)

share|improve this question

3 Answers

I use two different solutions depending on the situation. First, try the Nicole Sullivan approach (using overflow: hidden; on the final element in a row instead of float/width):

http://www.stubbornella.org/content/2009/07/23/overflow-a-secret-benefit/

.container {
  width: 75%;
}

.box1 {
  width: 33.33%;
  float: left;
  display: inline; /* fixes another IE bug */
}

.box2 {
  overflow: hidden;
}

This works in most cases.

Failing that, I add a negative margin of several pixels to the last element instead.

.box2 {
  width: 33.33%;
  float: left;
  display: inline; /* fixes another IE bug */
  margin-right: -3px;
}

If that last element is floated right instead, just add the negative margin to the left. So far that has worked for me in the few cases where overflow didn't fit.

share|improve this answer
This secret benefit of the overflow property is sexy – Rubens Mariuzzo Jul 2 '12 at 18:50

In a situation like this, I would tend to get round the problem using an IE-only stylesheet that fudges the values until they work. In this case, just set the widths to 33%, it won't be perfect but then that's just the nature of the web.

share|improve this answer
Thanks Rory. I know it could be solved that way and I might be forced to do that in case noone else have a better idea. It's a kind of an ugly way to solve it. – Jenst Jul 5 '09 at 18:35
It's also a necessity in many cases unfortunately. The least ugly/hackish way to go about it would be conditional comments. – Sam DeFabbia-Kane Jul 5 '09 at 21:37
"It's a kind of an ugly way to solve it" yes and no, okay you could call it a hack but I'd be very surprised if anyone can come up with something neater, most IE6 hacks are far worse! – roryf Jul 6 '09 at 14:10
I don't mind the hack. 33.33% gives the jumping in IE and if I change that to for example 33% to prevent the jumping, the widths are too small at some sizes. 33% is a wrong number, and then the widths get wrong. That's what bugging me. – Jenst Jul 7 '09 at 14:41

I think that a simple answer might be to not round at all, just create a final "spacer" element with a 1% width that shares the look of the 1/3rd elements. Even IE should be able to deal with a 33 + 33 + 33 + 1 rounding.

share|improve this answer

Your Answer

 
discard

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