I should have been more clear... I wasn't referring to CSS3 Column Layout... I was just referring to that search rendering lots of decent results to point you in the right direction of doing a 3 column layout w/ css...
quick example:
<!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>3 columns thing</title>
<style>
#mainWrap{
width:610px;
height:700px;
border:1px solid black;
}
#mainLeft{
width:200px;
height:700px;
margin:auto;
float:left;
border:1px solid pink;
}
#mainRightWrap{
width:404px;
height:700px;
float:right;
border:1px solid green;
}
#midCol{
width:200px;
height:700px;
margin:auto;
float:left;
border:1px solid black;
}
#rightCol{
width:200px;
height:700px;
margin:auto;
float:right;
border:1px solid pink;
}
#midColTop{
width:198px;
height:347px;
border:2px solid red;
}
#midColBot{
width:198px;
height:347px;
border:2px solid black;
}
</style>
</head>
<body>
<div id="mainWrap">
<div id="mainLeft">
left content
</div>
<div id="mainRightWrap">
<div id="midCol">
<div id="midColTop">stuff on top</div>
<div id="midColBot">stuff on bottom</div>
</div>
<div id="rightCol">right content</div>
</div>
</div>
</body>
</html>