I'm trying to add vertical space between some sections of a page by adding a bottom padding to the section containers, but I can't get it to work. I assume that it has something to do with the fact that I've got un-ordered lists inside the containers and that the list items are floating (using float: left;
).
I have also tried with margins and what not, but to no avail.
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;
}
Floating your containers left, as well, and then adding bottom margins should fix it
#developers, #contributors, #playtesters
{
float: left;
margin-bottom: 30px;
...
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With