07/07/2006, 07:33
|
| | | Fecha de Ingreso: noviembre-2003 Ubicación: Buenos Aires - Argentina
Mensajes: 442
Antigüedad: 21 años, 2 meses Puntos: 1 | |
Si no te entendí mal, esto lo logras seteando los márgenes (izq. superior) en cero y la tabla la dejas en porcentaje en lugar de otra unidad de medida (pixeles, pulgadas, etc.)
Ej:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Pagina nueva 1</title>
</head>
<body topmargin="0" leftmargin="0">
<div align="left">
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td width="50%"></td>
<td width="50%"></td>
</tr>
<tr>
<td width="50%"></td>
<td width="50%"></td>
</tr>
</table>
</div>
</body>
</html>
__________________ When all else is lost the future still remains. |