Ver Mensaje Individual
  #2 (permalink)  
Antiguo 30/01/2009, 07:48
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: Ayuda con Clear:Both; en Explorer

pero como estas usando el clear, te pongo un ejemplo de como debe ser:

Código css:
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. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  5. <title>Documento sin t&iacute;tulo</title>
  6. <style type="text/css">
  7. #cabecera{ width:800px; height:100px; margin:0 auto; background:#999}
  8. #contenedor{ width:800px; height:auto; overflow:auto; margin:0 auto; padding:0 0 5px 0; background:#333}
  9. #izq{width:200px; height:250px; background:#fff; float:left;}
  10. #der{ width:600px; height:250px; background:#CCC; float:right;}
  11. .clear{clear:both;}
  12. #pie{width:800px; height:30px; margin:0 auto; background:#666;}
  13. </style>
  14. </head>
  15.  
  16. <body>
  17. <div id="cabecera"></div>
  18. <div id="contenedor">
  19.     <div id="izq"></div>
  20.     <div id="der"></div>
  21.     <div class="clear"></div>
  22. </div>
  23. <div id="pie"></div>
  24. </body>
  25. </html>

pruebalo y avisas como te va
PD:las medidas fijas en los altos de las columnas son solo para ejemplo pueden tener cualquier medida o se auto
__________________
WFC
codigo82