Ver Mensaje Individual
  #3 (permalink)  
Antiguo 08/07/2008, 09:35
Avatar de Mikmoro
Mikmoro
Colaborador
 
Fecha de Ingreso: octubre-2006
Ubicación: K-pax
Mensajes: 7.228
Antigüedad: 17 años, 6 meses
Puntos: 280
Respuesta: problema con altura de tabla anidada

Prueba con esto y empieza luego a modificar desde ahí:

Cita:
<!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>
<title>Table Height Test</title>
<style type="text/css">
html, body, table, td {
height: 100%;
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<table style="width: 100%;border-collapse: collapse;" bgcolor="Silver">
<tr>
<td>
<table style="border-collapse: collapse;">
<tr>
<td bgcolor="Red">PROBANDOOO
</td>
<td>
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
Mikel.