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 space between the sections on this page by adding bottom padding to the container divs (#developers, #contributors, #playtesters) but I can't get it to work. I assume it has something to do with the fact that I've got un-ordered lists within the container divs and that the list items are using float: left; but no matter what I try I can't get it to work. I've also tried adding margins and what not, but I can't seem to get a space between the container divs.

share|improve this question

2 Answers

up vote 1 down vote accepted

Float you containers left and then use margin-bottom: should work

#developers, #contributors, #playtesters{
   float:left;
   margin-bottom:30px;}
share|improve this answer
Thanks! Worked like a charm. I also found out that you can fix this by specifying the height of the UL's within the container DIV's. Though, this is not the best solution if you're planning on updating them and adding new list items, as you'ld have to change the height all the time. So, again, Thank you for the answer. Works perfectly! :) – Tom Dec 11 '11 at 21:39
No probs good luck – Dominic Green Dec 11 '11 at 21:45

Either float the containers left or set overflow to "auto." With either solution you will still need to set a margin to create the aforementioned spacing.

#developers, #contributors, #playtester {
  overflow:auto;
}
share|improve this answer

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.