I think you're after something like this.
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Home</title>
<style type="text/css">
body {
width: 760px;
margin: 0 auto;
background-color: #CCC;
}
#container {
float: left;
width: 760px;
padding: 20px 0px;
}
#navigation {
float: left;
width: 144px;
border: solid #C00 1px;
background: #FFF;
margin: 0px 2px;
min-height: 200px;
}
#content {
float: left;
width: 458px;
border: solid #C00 1px;
background: #FFF;
min-height: 500px;
}
#subcontent {
float: left;
width: 144px;
border: solid #C00 1px;
background: #FFF;
margin: 0px 2px;
min-height: 200px;
}
</style>
</head>
<body>
<div id="container">
<div id="navigation"></div>
<div id="content"></div>
<div id="subcontent"></div>
</div>
</body>
</html>
I've put min-height on each div just to show you how the height could be displayed (which won't work in IE6 and below) but I presume you'd allow the content to decide on the height anyway so this could be removed.
Hope that helps?
Bookmarks