vote up 5 vote down star
1

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:

<html>
  <head>
    ...
  </head>
  <body>
    <div id="container">
      ...
    </div>
  </body>
</html>

Is there a valid reason for doing this? Why can't the css just reference the body tag?

flag
I was wondering this myself just the other day. +1 – Jeff Yates Dec 10 '08 at 2:30

3 Answers

vote up 12 vote down

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.

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 margin-left: auto; margin-right: auto.

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.

link|flag
vote up 3 vote down

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.

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.

link|flag
vote up 0 vote down

The most common reasons for me are so that:

  1. The layout can have a fixed width (yes, I know, I do a lot of work for designers who love fixed widths), and
  2. 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.
link|flag
ain't nothin wrong with fixed widths, IMO. – nickf Dec 10 '08 at 0:47
just preempting the haters... – da5id Dec 10 '08 at 0:50
Container is need for fixed "percentage" widths too. (essentially a fluid width) – Atomiton Dec 10 '08 at 22:40

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.