I\'m trying to organize divs into two columns, but not force them into rows. I\'m also trying to keep the vertical spacing between the divs a const
div
You can use table tag. Try something like this
table
HTML
CSS
body { padding: 40px; } .module { height: 50px; width: 45%; margin-right: 3%; margin-bottom: 20px; background: yellow; }
DEMO: http://jsfiddle.net/89mW6/5/