Tema: IE Css3
Ver Mensaje Individual
  #1 (permalink)  
Antiguo 22/09/2012, 04:07
Avatar de YolandaGC
YolandaGC
 
Fecha de Ingreso: marzo-2006
Ubicación: España
Mensajes: 151
Antigüedad: 18 años, 2 meses
Puntos: 0
Pregunta IE Css3

Estoy creando una página web y utilizando un script para evitar problemas con IE.
Este es el script: http://fetchak.com/ie-css3/
Este es mi código y no funciona en IE!¿Por qué?
Código:
#cabecera{
	position: relative;
	width:90%;
	height:200px;
	margin:0 auto;
	-moz-border-radius: 15px; /* Firefox */
  -webkit-border-radius: 15px; /* Safari and Chrome */
  border-radius: 15px; /* Opera 10.5+, future browsers, and now also Internet Explorer 6+ using IE-CSS3 */
  -moz-box-shadow: 10px 10px 20px #B20E50; /* Firefox */
  -webkit-box-shadow: 10px 10px 20px #B20E50; /* Safari and Chrome */
  box-shadow: 10px 10px 20px #B20E50; /* Opera 10.5+, future browsers and IE6+ using IE-CSS3 */
  behavior: url(../scripts/ie-css3.htc); /* This lets IE know to call the script on all elements which get the 'box' class */}

¿Alguna sugerencia para poder usar ese css3 para versiones inferiores a IE 9+?