Ver Mensaje Individual
  #2 (permalink)  
Antiguo 02/12/2008, 09:30
Avatar de willyfc
willyfc
 
Fecha de Ingreso: octubre-2008
Ubicación: Santa Cruz - Bolivia
Mensajes: 662
Antigüedad: 15 años, 6 meses
Puntos: 40
Respuesta: Insertar un div dentro de otro alineado!!

hola
creo que lo que quieres es mas o menos así:

Código HTML:
<div id="grande">
	<div id="contenido">
		texto texto texto texto texto texto texto texto texto texto texto texto <br />
			texto texto texto texto texto texto texto texto texto texto texto texto <br />
			texto texto texto texto texto texto texto texto texto texto texto texto <br />
	</div>
	<div id="abajo"></div>
</div> 
y en el css

Código:
#grande{ width:798px; height:auto; display:table; background-color:#CCCCCC; border:1px solid #000000; margin:0 auto;}
#contenido{ width:300px; height:auto; background-color:#FFFFFF; margin:20px 4px 0 4px;}
#abajo{width:200px; height:200px; background-color:#333333; float:right; margin:10px 10px 10px 0;}
espero te sirva