Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Even with margin and padding set, no space between left column divs Re: Even with margin and padding set, no space between left column divs

#115335
wolfcry911
Participant

Instead of a top margin on the about div, put a bottom margin on the reel div. The reason is that because #reel is a float, its taken out of the document flow; #about’s margin is ‘lost’ beneath the #reel div (a margin larger than #reel’s height would show this). However, a float’s margin will push other elements.