Ver Mensaje Individual
  #2 (permalink)  
Antiguo 09/07/2008, 04:59
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: Capa al 100% bajo header

Tu problema es muy común, y se debe a que IE no sabe dimensionar una caja con arreglo a unas coordenadas (top:0; bottom: 0;), lo cual es un incordio.

Para mi gusto, una buena manera de solucionarlo es esta:

Cita:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style type="text/css">
html, body {
height:100%;
margin: 0;
padding: 0;
}
#header { background-color:#009966; width:100%; height:80px;position: absolute; top: 0; left: 0;z-index: 10;}
#panelIzq {width: 200px; background-color:#0099CC; float:left; height: 100%;position:relative;top: 0px;z-index: 0;}
#texto {position: relative; top: 85px;}
</style>
</head>
<body>
<div id="header"></div>
<div id="panelIzq">
<div id="texto">texo de prueba</div>
</div>
</body>
</html>
Mikel.