Gracias por tu respuesta danielalejandro!
No se que pasa... cuando pruebo el link directamente de www.araudi.net/ejemplos/3_capas_con_scroll.html no funciona como deberia...
Pero si lo pruebo "local" SI. Como pasa esto? Si lo aplico en un sitio web tendria este mismo problema???
Gracias por tu ayuda!
Cita:
Iniciado por danielalejandro pues segun lo prove y se ve bien pero no lo se prueba y me dices que tal te fue
Código HTML:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
html, body { height: 100%;
overflow: hidden;
margin: 0;
}
#superior { background-color: #ff0;
font-size: 9px;
position: relative;
height: 80px;
}
#inferior { background-color: #ff0;
font-size: 9px;
width: 100%;
height: 80px;
position: absolute;
bottom: 0;
}
#central { background-color: #33f;
overflow: auto;
position: absolute;
width: 100%;
top: 80px;
bottom: 80px;
}
<div id="superior">SUPERIOR
</div> <div id="central">central
<br />
<div id="inferior">INFERIOR
</div>
salu2