content
CSS:
body {min-width:640px}
#header,#menu,#content,#sub-section,#footer {
overflow:hidden;
display:inline-block
}
/* safari and opera need this */
#content,#sub-section,#footer {width:100%}
#header,#menu {float:left}
#header {width:40%}
/* IE5 Mac won't take 60% */
#menu {width:59.2%}
#content {clear:left}
HTML:
<div id="header"><h1>header</h1></div>
<div id="menu"><h1>menu</h1></div>
<div id="content"><h1>content</h1></div>
<div id="sub-section"><h1>sub-section</h1></div>
<div id="footer"><h1>footer</h1></div>