Ver Mensaje Individual
  #17 (permalink)  
Antiguo 27/03/2008, 12:45
Urotsuki
 
Fecha de Ingreso: febrero-2008
Mensajes: 16
Antigüedad: 16 años, 1 mes
Puntos: 0
Re: Problemas con el height de las filas en IE7

Hola Mikel,

creo que no me entiendes. Mira este código, es el tuyo ligeramente modificado:

Código:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="es-es">
<head>
<title>Plantilla</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<style type="text/css">
* { margin: 0px;
padding: 0px;
}
html, body { height: 100%;
width: 100%;
}
#padre { border-color: rgb(255, 0, 0);
border-width: 2px;
height: auto ! important;
position: relative;
background-color: rgb(51, 153, 153);
min-height: 100%;
}
#uno { border-color: rgb(51, 255, 51);
border-width: 2px;
height: 50px;
background-color: rgb(102, 204, 204);
}
</style>
</head>
<body>
<div id="padre">
<div id="uno">Esta fila tendr&aacute; siempre 50px de
alto</div>
<div id="estees" style="background-color:Red;">Esta fila ocupar&aacute; el resto de alto</div>
</div>
</body>
</html>
¿Ves el div llamado "estees", con color de fondo rojo? Ese es el que quiero que ocupe el resto de alto de la página.