I'm trying to add vertical space between some sections of a page by adding a bottom padding to section containers, but I can't get it to work. I assume this is due to the fact that I have unordered lists inside containers and that the list items are floating (using float: left; ).
float: left;
I also tried with fields and what not, but to no avail.
Floating your containers on the left, as well as adding a bottom margin should fix it
#developers, #contributors, #playtesters { float: left; margin-bottom: 30px; ... }
Either place the containers to the left, or set the overflow to "auto". In any solution, you still need to set a border to create the above interval.
#developers, #contributors, #playtester { overflow:auto; }
Source: https://habr.com/ru/post/1385794/More articles:Making given difference in MongoDB - c #iOS SDK: playing music in the background and switching views - iosOAuth 1.0 or 2.0? Native mobile app authentication - javaHow to Protect RESTful Web Services (PROVIDER) - rest.NET - Collections and Inheritance - collectionsSplitting a linear story into two branches in Mercurial - mercurialHow can you avoid cross-origin policy error while trying to access localhost? - jqueryCannot access files in a subdirectory using Apache server - apache2Reconnecting removed SqlConnection without rolling back the transaction after changing the IP address - sqlLose focus on text box - c #All Articles