Reputation: 9309
I am having some problem with a two column layout in Fire Fox. In Chrome is looks as it should. But in Fire Fox I get a 50 pixel height white space area between the text and the menu, when I use float: left; for the left column and float: right; for the right column. I can't understand why and I searched for error in the CSS, but I cant find any and I don't know if I have done something wrong. I have used Fire Bug, but it's just like a dead area. Help is appreciated! Thanks!
Upvotes: 0
Views: 260
Reputation: 123397
if you add overflow: hidden
to #wrapper-body
the extra space is removed (on Firefox 12)
#wrapper-body {
...
overflow: hidden;
}
screenshot:
Upvotes: 1