Ver Mensaje Individual
  #5 (permalink)  
Antiguo 03/09/2005, 13:26
Avatar de flaviovich
flaviovich
 
Fecha de Ingreso: agosto-2005
Ubicación: Lima, Peru
Mensajes: 2.951
Antigüedad: 18 años, 8 meses
Puntos: 39
Exclamación

Cita:
Iniciado por CIBERDAVID
hola! resulta que quiero que una tabla este centrada en el navegador horizontalmente y verticalmente.horizontalmente no hay problema, pero verticalmente?? cual es el truco? gracias!
Te recomiendo buscar antes de crear un tema, y leer esto , porque este tema se ha tratado muchisimas veces.
Bueno, aquí te doy un ejemplo. Espero que te sirva
Código HTML:
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body leftmargin="0" topmargin="0" rightmargin="0" bottommargin="0"> 
<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">  
<tr>  
<td width="100%" height="100%" align="center" valign="middle">  
Aqui todo el contenido... <img src="una imagen"> 

</td> </tr> 
</table>
</body>
</html>