content
CSS:
body {min-width:640px}
#header,#menu,#content,#sub-section,#footer {
overflow:hidden;
display:inline-block
}
/* safari and opera need this */
#header {width:100%}
#menu,#content {float:left}
#sub-section,#footer {float:right}
#menu {width:20%}
#content {width:59.9%}
#sub-section {width:20%}
#footer {width:20%;clear:right}
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>