Ver Mensaje Individual
  #4 (permalink)  
Antiguo 15/03/2011, 16:03
Avatar de sanxuan
sanxuan
 
Fecha de Ingreso: enero-2011
Ubicación: Gijón
Mensajes: 671
Antigüedad: 13 años, 3 meses
Puntos: 36
Respuesta: CAPAS dentro de otras capas

Si pones el css y el HTML quizás podamos ayudar mejor. Yo no veo razones para que no funcione lo que dices que has hecho.
Te muestro un ejemplo que reproduce el esquema que indicas:
Código HTML:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="es" xml:lang="es">
  3. <title>Título</title>
  4. <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
  5.  
  6. <style type="text/css">
  7. <!--
  8. #contenedor {
  9.    background:#FFFF00;
  10.    width: 800px;
  11.    height:800px;
  12. }
  13. #menu {
  14.    background:#00FF00;
  15.    float: left;
  16.    position: relative;
  17.    width:300px;
  18.    height:300px;
  19. }
  20. #menu1 {
  21.    background:#00FFFF;
  22.    width: 300px;
  23.    height: 150px;
  24.    position: absolute;
  25. }
  26. #menu2 {
  27.    background:#FF00FF;
  28.    height: 150px;
  29.    width: 300px;
  30.    top:150px;
  31.    position: absolute;
  32. }
  33. #contenido {
  34.    background:#FF0000;
  35.    float: left;
  36.    height: 600px;
  37.    width:300px;
  38. }
  39.  
  40. -->
  41. </head>
  42.  
  43. <div id="contenedor">
  44. <div id="menu">
  45. <div id="menu1"></div>
  46. <div id="menu2"></div>
  47. </div>
  48. <div id="contenido"></div>
  49. </div>
  50. </body>
  51. </html>