I thought I was understanding box model until I started a new project. Here is a stripped down example. Whats happening is below the menu is where the content div sits. When I set #content margin-top:40px it doesn't shift down 40px. In firebug I can see that its adding the margin but its showing the margin in yellow move up into the menu area. I presumed by adding margin of 40px it would push the content div down from the menu by 40px. It works if I add padding but not margin. Is there something I'm not getting about the box model.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Home</title>
<link rel="stylesheet" href="main.css" />
</head>
<body>
<div id="wrapper">
<div id="header"></div> <!-- Header Ends -->
<div id="menu">
</div> <!-- Menu Ends -->
<div id="content">
<div id="leftColumn">
<h2>Main title</h2>
<h3>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium</h3>
<p>voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem.</p>
</div>
<div id="centerColumn"></div>
<div id="rightColumn"></div>
</div>
</div> <!-- Wrapper Ends -->
</body>
</html>
overflow:auto;orclear:both;– Matthew Lehner Jun 17 '11 at 16:53