Hola,
Cambie algunas cosas del CSS. La verdad que ya estoy medio dormido y no se ni lo que estoy haciendo.
Prueba con este código y si no funciona mañana lo reviso con mas calma.
Código HTML:
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><title>Plantilla 1</title><style type="text/css">
html,body{
margin:0;
font-size:9pt;
font-family:Arial;
background:#ABC;
}
#cosmos{
background:#ff952b;
display: table;
vertical-align:top;
width:100%;
}
#enlaces{
display: table-cell;
width:20%;
}
#info{
background:#ffb878;
display: table-cell;
width:80%;
}
p{
margin:0;
}
</style></head><body>
<?php
echo '<div id="cosmos">';
echo '<div id="enlaces">';for($i=0;$i<69;$i++)echo '<p>Link #'.$i.'</p>';echo '</div>';
echo '<div id="info">';for($i=0;$i<9;$i++)echo '<p>Linea de info real #'.$i.'</p>';echo '</div>';
echo '</div></body></html>';
?>
Saludos