In my CSS studies I have learned about putting containers within containers, but one thing is not clear to me and that is: should the entire page you are looking at be in a container, or do we assume that <body> is that parent container.
For example, if you wanted to have a banner header, a navigation bar, and a contents wrapper, would you have this:
<div id="header">
</div>
<div id="navbar">
</div>
<div id="contents>
</div>
or, would you have this:
<div id="page">
<div id="header">
</div>
<div id="navbar">
</div>
<div id="contents>
</div>
</div>
Thanks, James
