Similar Question:
Nesting Divs Tutorial
I'm relatively new to CSS as I've been using tables in my HTML projects for quite some time now. I am currently trying to understand how to nest or stack divs inside the content section of a 3-column layout. In table layouts, adding a new TR would do the trick, but when I float another div into the content line, it ends up appearing parallel or vertically next to the content rather than below it. Am I missing something about the use of divs here? Is there an alternative method to achieve this?
<div id="header">Header</div>
<div id="leftcolumn">Left Column</div>
<div id="content">Content</div>
<div id="footer">Footer</div>