Ver Mensaje Individual
  #2 (permalink)  
Antiguo 07/02/2007, 10:46
Avatar de payo22
payo22
 
Fecha de Ingreso: noviembre-2002
Ubicación: México
Mensajes: 839
Antigüedad: 21 años, 5 meses
Puntos: 1
Re: algo sobre capas

hice algo como esto:

Código PHP:
<html>
<
head>
<
style type="text/css">
body overflow:auto;}
div#Superior { position:absolute; top:0; left:0; width:100%; height:15%; overflow:auto;}
div#Izquierda { position:absolute; top:15% ;left:0; width:25%; height:85%; overflow:auto;}
div#Derecha { position:absolute; top:15%; left:25%; width:75%; height:85%; overflow:auto;}
</style>
</
head>
<
body>
<
div id="Superior">...Cotenido de la caja Superior...</div>
<
div id="Izquierda" >...Izquierda...</div>
<
div id="Derecha">...Cotenido de la caja Derech...</div>
</
body>
</
html
pero ahora como puedo mostrar el contenido de un html en el div izquierdo, en este caso el menu.

gracias