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 cannot for the life of me figure out why that empty space is there. It's inside of section .Blog. Removing the section .SidepanelPanel (the ad) makes it go away. Some different content for .SidepanelPanel doesn't cause this to happen leading me to believe it has something to do with the link + image contents of the .SidepanelPanel... but why? And how to fix?

share|improve this question
1  
interesting. i can't tell you why, but when i threw this into jsfiddle, it works fiddle.jshell.net/fPZrr/show – albert Nov 10 '11 at 7:29
@albert The ad image got replaced by its alt-text on jsfiddle, so clearly the problem lies with the image somehow affecting the content flow. – Core Xii Nov 10 '11 at 9:42
duh. my bad man. – albert Nov 10 '11 at 12:12

1 Answer

up vote 3 down vote accepted
+50

If you apply vertical-align: top; to .Blog, the large gap goes away.

share|improve this answer
1  
This is the correct answer. I guess the reason is the default value of vertical-align is vertical-align: baseline. While you have two cells with different height, that will align .blog and .SidePanel with the bottom. – TaianSu Nov 10 '11 at 9:23

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.