Ver Mensaje Individual
  #1 (permalink)  
Antiguo 27/05/2010, 10:17
charlyta
 
Fecha de Ingreso: junio-2008
Mensajes: 291
Antigüedad: 15 años, 10 meses
Puntos: 9
2 divs al 50%

Hola. este codigo no me llena la pantalla en 2 divs en ie 7. Es fallo mío? si es del navegador lo dejo, es imposible diseñar correctamente una cosa tan sencilla...

Código HTML:
 <style>

      #azul {background-color:#00aeef; color:#FFF; width:50%; height:2px; float:left;margin: 0;
	padding:0;}
      #amarillo{background-color:#fff200; color:#FFF; width:50%; height:2px; float:right;margin: 0;
	padding:0;}
    
    body {
		margin:0;
	padding:0;
	overflow:hidden;
	} 
</style>


  </head>
  <body>
          
        <div id="azul"></div>
        <div id="amarillo"></div>
       
     
   
  </body>
</html>