Ver Mensaje Individual
  #2 (permalink)  
Antiguo 01/10/2011, 13:17
jc92
 
Fecha de Ingreso: abril-2010
Mensajes: 116
Antigüedad: 14 años, 9 meses
Puntos: 3
Respuesta: utilizando divs correctamente?

Mira te dejo los codigos okey?

Y estructurado de la siguiente forma.

index.html

<div id="content">
<div id="cont1">Colocar aquí el contenido para id "cont1"</div>
<div id="cont2">Colocar aquí el contenido para id "cont2"</div>
<div id="footer"></div>
<div id="left">Colocar aquí el contenido para id "left"</div>
</div>

css

#content {
width:280px;
height:120px;
}
#cont2 {
float:right;
width:140px;
height:120px;
}
#cont1 {
float:left;
width:140px;
height:120px;
}
#footer {
clear:both;
}
#left {
margin-left:100%;
}