Ver Mensaje Individual
  #2 (permalink)  
Antiguo 09/08/2011, 16:32
Avatar de ArturoGallegos
ArturoGallegos
Moderador
 
Fecha de Ingreso: febrero-2008
Ubicación: Morelia, México
Mensajes: 6.774
Antigüedad: 16 años, 2 meses
Puntos: 1146
Respuesta: Problema de Maquetacion

para los div verdes necesitas un reset CSS y en lugar de dar margen entre los elementos <p> aplica un padding interno

algo burdo, rápido y funcional para ejemplo es aplicar al inicio de tu css
Código CSS:
Ver original
  1. *{margin:0;padding:0;}
  2. p{padding:8px 0;}
la primera linea es un reset hecho a las carreras busca algún otro en san google mas completo

para la barra amarilla derecha solo coloca el código antes que el de la izquierda algo como

Código HTML:
Ver original
  1. <div id="derecha">
  2. 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.
  3. </div>
  4.  
  5. <div id="izquierda1">
  6. 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.
  7. </div>
  8.  
  9. <div id="izquierda2">
  10. 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.
  11. </div>

y listo eso fue todo ñ.ñ