show/hide this revision's text 2 edited tags
show/hide this revision's text 1

Why should I use a container div in HTML?

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?