Tema: Divs width
Ver Mensaje Individual
  #9 (permalink)  
Antiguo 24/01/2009, 10:02
el_apronte
 
Fecha de Ingreso: enero-2009
Mensajes: 165
Antigüedad: 15 años, 3 meses
Puntos: 1
Respuesta: Divs width

y si pruebas de hacerlo asi?

.contenedor{
width:994px;
margin:auto auto -38px auto;
height: auto !important;
min-height: 100%;
height: 100%;

}

.left{
width:230px;
background-color:#e1e1e1;
float:left;
}

.central{
width:711px;
float:left;
padding:20px 0px 0px 21px;

}

.right{
width:175px;
padding:6px;
background-color:.ccc;
float:right;
margin: 20px 0px 0px 19px;
}


<div class="contenedor">
<div class="left">columna left</div>
<div class="central">
<div class="right">columna izquierda</div>
Columna central
</div>