Hola,
Espero que te sirba, a mi para practicar un poquillo me a valido :) aunque seguro que hay muchas formas y/o mejores :P
Saludos
Código:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
#columnaArriba {
border: 1px solid black;
}
#contenedor {
float: left;
width: 81%;
border: 2px solid yellow;
}
#columnLeft {
float: left;
width: 20%;
border: 1px solid red;
}
#mainContent {
float: left;
width: 79%;
border: 1px solid green;
}
#columnRight {
width: 18%;
/* Lo floto a la derecha para hacerlo coincidir
* con el borde derecho de arriba, si no, tambien
* se puede en left
*/
float: right;
border: 1px solid blue;
}
#otra {
clear: both;
}
</style>
</head>
<body>
<div id="columnaArriba">
<h2>Columna de Arriba</h2>
</div><!-- Fin columnaArriba -->
<div id="contenedor">
<div id="columnLeft">
<h4>Columna Izquierda</h4>
</div><!-- Fin columnLeft -->
<div id="mainContent">
<h4>Columna Central</h4>
</div><!-- Fin mainContent -->
</div><!-- Fin de contenedor -->
<div id="columnRight">
<h4>Columna derecha</h4>
</div><!-- Fin de columnRight -->
</body>
</html>