Hola,
Ignoro si será la forma más elegante o eficaz de conseguirlo, pero, yo suelo usar "capas flotantes". ¿Capaz flotantes? Mejor una especie de ejemplo:
Código PHP:
<html>
<head>
<title>ClubDelphi.com</title>
<style type="text/css">
div#content {
width: 70%;
float: left;
border: #000 solid 1px;
}
div#sidebar {
width: 20%;
float: left;
margin: 0 0 0 1em;
border: red solid 1px;
}
div#footer {
clear: both;
padding: 1em 0 0 0;
}
</style>
</head>
<body>
<div id="content">
Content of content :P
</div>
<div id="sidebar">
Sidebar content :)
</div>
<div id="footer">
Footer content :D
</div>
</body>
</html>
Espero haberte ayudado en algo.
