Ver Mensaje Individual
  #4 (permalink)  
Antiguo 29/02/2012, 05:10
julioherce
 
Fecha de Ingreso: febrero-2012
Mensajes: 2
Antigüedad: 12 años, 2 meses
Puntos: 0
Respuesta: Div cuya altura crezca con el contenido

Hola, antes de nada muchas gracias por vuestros comentarios. Al final cambié totalmente la manera en la que lo estaba haciendo y lo hice de una manera mucho más fácil. Sin javascript. Aquí lo dejo por si a alguien le sirve de algo.

Un saludo.
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" xml:lang="es" lang="es-es">
  3. <title>Tricky layout solved</title>
  4. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  5.  
  6. <link rel="stylesheet" type="text/css" href="style.css" />
  7.  
  8. </head>
  9.  
  10. <div id="container">
  11.     <div id="header">
  12.         <p>Header</p>
  13.     </div>
  14.    
  15.     <div id="left-column">
  16.         <p>Left Column</p>
  17.     </div> 
  18.            
  19.     <div id="right-column">
  20.         <p>Right Column</p>
  21.     </div> 
  22.    
  23.     <div id="main-column">
  24.        <p>Main Column</p>
  25.        <p>main-columnLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
  26.                             Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
  27.                             Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
  28.                             Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
  29.                             </p>
  30.                             <p>main-columnLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
  31.                             Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
  32.                             Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
  33.                             Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
  34.                             </p>
  35.                            
  36.     </div>
  37.        
  38.     <div class="clearer"></div>
  39. </div>
  40.  
  41. <div id="footer">
  42.     <p>Footer</p>
  43. </div>
  44.  
  45. </body>
  46. </html>


Código CSS:
Ver original
  1. * {padding:0; margin:0; outline: 0;}
  2.  
  3. html, body {height:100%;font-family: verdana, arial, sans-serif;font-size: 1em;outline: 0;}
  4.  
  5. body {background-color: #3cf;}
  6.  
  7. #container {min-height:100%;height: auto!important;height:100%;border-left: solid 200px #090;border-right: solid 200px #090;}
  8.  
  9. #header {height: 4em;background-color: #399;color: #fff;text-align: center;margin-left: -200px;margin-right: -200px;position: relative;z-index: 10;}
  10.  
  11. #main-column {padding: 1em;}
  12.  
  13. #left-column {position: relative;margin-left: -190px;float: left;width: 190px;}
  14.  
  15. #right-column {position: relative;margin-right: -190px;float: right;width: 190px;}
  16.  
  17. #footer {text-align: center;background-color: #366;color: #fff;height: 3em;margin-top: -3em;}
  18.  
  19. .clearer {clear: both;padding-top: 4em;}