Ver Mensaje Individual
  #12 (permalink)  
Antiguo 08/08/2011, 17:47
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: border-radius en ie8

Estoy viendo tu código, y recien ahora me doy cuenta de un detalle,
tenes puesto
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#11a5c0', endColorstr='#0f788c',GradientType=0 ); /* IE6-9 */
y eso hace que no trabaje adecuadamente, pra el gradient tenes que usar
-pie-background: linear-gradient(#EEFF99, #66EE33);

Resumiendo, para que funcionen en todas partes los tres efectos (radius, shadow, gradient) (+ PIE.htc para IE)


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. <title>PIE CSS3</title>
  4. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  5. <style type="text/css">
  6. #footer1{
  7. position: relative;
  8. left:0px;
  9. color:black;
  10. width:970px;
  11. height:102px;
  12. margin: 0px auto;
  13. border: 1px solid #696;
  14. padding: 60px 0;
  15. text-align: center;
  16. -webkit-border-radius: 8px;
  17. -moz-border-radius: 8px;
  18. border-radius: 8px;
  19. -webkit-box-shadow: #666 4px 8px 3px;
  20. -moz-box-shadow: #666 4px 8px 3px;
  21. box-shadow: #666 4px 8px 3px;
  22. background: #EEFF99;
  23. background: -webkit-gradient(linear, 0 0, 0 bottom, from(#EEFF99), to(#66EE33));
  24. background: -webkit-linear-gradient(#EEFF99, #66EE33);
  25. background: -moz-linear-gradient(#EEFF99, #66EE33);
  26. background: -ms-linear-gradient(#EEFF99, #66EE33);
  27. background: -o-linear-gradient(#EEFF99, #66EE33);
  28. background: linear-gradient(#EEFF99, #66EE33);
  29. -pie-background: linear-gradient(#EEFF99, #66EE33);
  30. behavior: url(PIE.htc);
  31. }
  32. </head>
  33. <div id="footer1">Footer 1</div>
  34. </body>
  35. </html>
Saludos
__________________
La voz de las antenas va, sustituyendo a Dios.
Cuando finalice la mutación, nueva edad media habrá
S.R.