16/04/2009, 10:59
|
| | Fecha de Ingreso: abril-2009 Ubicación: Santa Fe, Capital
Mensajes: 38
Antigüedad: 15 años, 7 meses Puntos: 0 | |
Respuesta: Ayuda: maximizar cambia la posicion del los box model Ya corregí el código, cambie los porcentajes por px, y saque la position Este es el resultado
div#top{
min-width:770px;
width:100%;
height:80px;
background:white;
borde-top:1 solid black;
}
#contenedor{
min-width:770px;
width:100%;
}
div#left{
width:180px;
height:400px;
min-height:300px;
overflow:hidden;
float:left;
background:#90EE90;/*Verde claro*/
}
div#right{
height:400px;
min-height:300px;
overflow:none;
background:#999;
}
div#bottom{
min-width:770px;
width:100%;
height:50px;
background:white;
borde-bottom:1 solid black;
} Código HTML
<div id="top">
<jsp:include page="Encabezado.html"></jsp:include>
</div>
<div id="contenedor">
<div id="left">
<jsp:include page="Menu.jsp"></jsp:include>
</div>
<div id="right">
<jsp:include page="Inicio.html"></jsp:include>
</div>
</div>
<div id="bottom">
<jsp:include page="Pie.html"></jsp:include>
</div> |