Why should I use a container div in HTML? - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T13:06:42Zhttp://stackoverflow.com/feeds/question/354739http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/354739/why-should-i-use-a-container-div-in-html5Why should I use a container div in HTML?lara.robertson2008-12-10T00:34:27Z2008-12-12T11:09:37Z
<p>I am currently learning html/css, and have noticed a common technique is to place a generic container div in the root of the body tag:</p>
<pre><code><html>
<head>
...
</head>
<body>
<div id="container">
...
</div>
</body>
</html>
</code></pre>
<p>Is there a valid reason for doing this? Why can't the css just reference the body tag?</p>
http://stackoverflow.com/questions/354739/why-should-i-use-a-container-div-in-html/354747#3547473Answer by Mitchel Sellers for Why should I use a container div in HTML?Mitchel Sellers2008-12-10T00:38:19Z2008-12-10T00:38:19Z<p>THis method allows you to have more flexibility of styling your entire content. Effectivly creating two containers that you can style. THe HTML Body tag which serves as your background, and the div with an id of container which contains your content.</p>
<p>This then allows you to position your content within the page, while styling a background or other effects without issue. THink of it as a "Frame" for the content.</p>
http://stackoverflow.com/questions/354739/why-should-i-use-a-container-div-in-html/354752#35475212Answer by Jonathan Tran for Why should I use a container div in HTML?Jonathan Tran2008-12-10T00:40:29Z2008-12-10T00:47:23Z<p>The container div, and sometimes content div, are almost always used to allow for more sophisticated CSS styling. The body tag is special in some ways. Browsers don't treat it like a normal div; its position and dimensions are tied to the browser window.</p>
<p>But a container div is just a div and you can style it with margins and borders. You can give it a fixed width, and you can center it with <code>margin-left: auto; margin-right: auto</code>.</p>
<p>Plus, content, like a copyright notice for example, can go on the outside of the container div, but it can't go on the outside of the body, allowing for content on the outside of a border.</p>
http://stackoverflow.com/questions/354739/why-should-i-use-a-container-div-in-html/354761#3547610Answer by da5id for Why should I use a container div in HTML?da5id2008-12-10T00:44:42Z2008-12-10T00:44:42Z<p>The most common reasons for me are so that:</p>
<ol>
<li>The layout can have a fixed width (yes, I know, I do a lot of work for designers who love fixed widths), and</li>
<li>So the layout can be centered by applying text-align: center to the body and then margin: auto to the left and right of the container div.</li>
</ol>