Cita:
Iniciado por pitufoweb Solo agrega en el doctype y declaracion de XML y se vera bien.
Gracias.
Puedes ver que no sucede, (tu colocaste LOS DOS TEXTOS con igual LARGO), por favor evalua este:
Código PHP:
<?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" xml:lang="es">
<head>
<meta http-equiv="Content-Style-Type" content="text/css" />
<meta http-equiv="Content-Script-Type" content="text/javascript" />
<meta http-equiv="content-language" content="es" />
<link rel="icon" href="http://web.org/favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="http://web.org/favicon.ico" type="image/x-icon" />
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" />
<title>Plantilla 1</title><style type="text/css">
html,body{
border:0;
margin:0;
padding:0;
font-family:Arial;
font-size:9pt;
color:#000;
background:#aabbcc;
}
#cosmos{
border:0;
padding:0;
color:#000;
background:#ff952b;
height:100%;
}
#enlaces{
float:left;
}
#info{
height:100%;
background:#ffb878;
color:#000;
margin-left:12em;
}
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>';
?>