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>