Ver Mensaje Individual
  #2 (permalink)  
Antiguo 28/03/2012, 01:05
Avatar de emprear
emprear
Colaborador
 
Fecha de Ingreso: junio-2007
Ubicación: me mudé
Mensajes: 8.388
Antigüedad: 16 años, 10 meses
Puntos: 1567
Respuesta: Problema con margin-top con elementos flotantes en FF

La solución pasa por darle overflow: auto a los divs, con un pequeño reset lo arreglas

Además te puse margenes adicionales para que veas que se pueden manejar a voluntad, e hice coincidir tus floats con las descripciones

Código HTML:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  4. <title>Documento sin t&iacute;tulo</title>
  5. <style type="text/css">
  6. html, body , div{
  7. margin:0px;
  8. padding:0px;
  9. border: none;
  10. overflow: auto;
  11. }
  12.  
  13. .contenedor{
  14. background-color:#000066; margin-top: 50px;}
  15.  
  16. .contenedor_indiferente{
  17. background-color:#CC0033; margin-top: 10px;}
  18.  
  19. .contenedor_indiferente_left_1{
  20. float:left;}
  21.  
  22. .contenedor_indiferente_left_2{
  23. float:right;}
  24.  
  25. .contenedor_flotadores{
  26. background-color:#999999}
  27.  
  28. .contenedor_flotadores_left{
  29. float:left;}
  30.  
  31. .contenedor_flotadores_right{
  32. float:right;}
  33.  
  34. .clear{
  35. clear:both;}
  36. </head>
  37.  
  38. <div class="contenedor">
  39.     <div class="contenedor_indiferente">
  40.         <div class="contenedor_indiferente_left_1">
  41.             Elemento Left en A
  42.         </div>
  43.         <div class="contenedor_indiferente_left_2">
  44.             Elemento right en A
  45.         </div>
  46.         <div class="clear"></div>
  47.     </div>
  48.     <div class="contenedor_flotadores" style="margin-top: 10px;">
  49.         <div class="contenedor_flotadores_left">
  50.             Flotador Left en B
  51.         </div>
  52.         <div class="contenedor_flotadores_right">
  53.             Flotador Right en B
  54.         </div>
  55.         <div class="clear"></div>
  56.     </div>
  57. </div>
  58. </body>
  59. </html>

Saludos
__________________
La voz de las antenas va, sustituyendo a Dios.
Cuando finalice la mutación, nueva edad media habrá
S.R.