Ver Mensaje Individual
  #1 (permalink)  
Antiguo 07/09/2007, 04:53
konguy
 
Fecha de Ingreso: agosto-2006
Mensajes: 78
Antigüedad: 17 años, 8 meses
Puntos: 0
Problema al centrar la tabla

Hola
Estoy con una web y hago una tabla y dentro otra para alinear pero el problema es que en una pantalla grande el contenido se ve arriba del todo y me gustaría que se viese en el centro, verticalmente hablando. A ver si alguien me puede ayudar.
El código es el siguiente:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Documento sin t&iacute;tulo</title>
<style type="text/css">
<!--
body {
background-color: #E6E6E6;
}
.Estilo8 {
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
font-size: 10px;
text-align:left;
color: #999999;
}
-->
</style></head>

<body>
<p>
<div align="center">
<table border="0" width="100%" cellpadding="0" cellspacing="0" height="100%">
<tr>
<td align="center" valign="middle">
<table width="800" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="800" height="80" valign="top" colspan="3">
<!--CONTENIDO DE LA CELDA-->
</td>
</tr>
<tr>
<td width="800" height="5" bgcolor="#D5E1F4" valign="top" colspan="3">&nbsp;</td>
</tr>
<tr>
<td align="center" width="800" height="50">
<!--CONTENIDO DE LA CELDA-->
</td>
</tr>
<tr>
<td width="800" height="5" bgcolor="#D5E1F4" valign="top" colspan="3">&nbsp;</td>
</tr>
<tr>
<td width="800" height="330" valign="top" colspan="3">
<!--CONTENIDO DE LA CELDA-->
</td>
</tr>
<tr>
<td width="800" height="20" bgcolor="#D5E1F4" valign="middle" colspan="3"><div align="left"><span class="Estilo8">
<!--CONTENIDO DE LA CELDA-->
</span></div></td>
</tr>
</table>
</td>
</tr>
</table>
</div>
</body>
</html>