3D-kreativ
3D-kreativ

Reputation: 9309

Unwanted white space area when using float in two column layout in FireFox

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

Answers (1)

Fabrizio Calderan
Fabrizio Calderan

Reputation: 123397

if you add overflow: hidden to #wrapper-body the extra space is removed (on Firefox 12)

#wrapper-body {
    ...
    overflow: hidden;
}

screenshot:

enter image description here

Upvotes: 1

Related Questions