Ver Mensaje Individual
  #9 (permalink)  
Antiguo 06/01/2012, 02:00
ugluck
 
Fecha de Ingreso: enero-2012
Mensajes: 21
Antigüedad: 13 años, 1 mes
Puntos: 0
Respuesta: Estructura con DIV de ancho automático

Prueba con esto:

Código CSS:
Ver original
  1. body{margin:0; padding:0;}
  2. #colum-mother{
  3. position:relative;
  4. margin: o auto;
  5. width:100%; height:640px;
  6. }
  7. #column-menu {
  8. position:relative;float: left;
  9. width:250px;height: 100%; min-height:640px;
  10. background-color:#099;
  11. }
  12.  
  13. #column-contenido {
  14. position:absolute;float: left; top:0; margin-left:250px;
  15. width:100%;height: 100%;
  16. background-color:#C00;
  17. }