Ver Mensaje Individual
  #1 (permalink)  
Antiguo 13/07/2011, 18:04
Avatar de Alucine
Alucine
 
Fecha de Ingreso: abril-2011
Mensajes: 59
Antigüedad: 13 años
Puntos: 10
porqué PIE.htc no me funciona en IE ??

Hola amigos, estoy tratando de utilizar esta maravillosa herramienta que es CSS3 PIE (para los que no sepan, es un archivo que permite que Internet Explorer reconozca algunos efectos básicos de Css3 como las sombras y brodes redondeados)

Pues bien, es sencillo, hice todos los pasos en un html básico en un documento con solo un div y le apliqué un borde redondeado pero en IE 8 se sigue viendo cuadrado. Probé subir el Pie.htc a mi carpeta raíz y también a un servidor, de ambas formas no funciona en IE. Trabajo en Dreamweaver.... Qué puedo estar haciendo mal?


Les dejo el html completo por si detectan algun problema en el doctype o algo asi:

Código HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<link href="q3.css" rel="stylesheet" type="text/css" />
</head>

<body>

<div id="contenedor">
</div>


</body>


</html> 
y el css:

Código:
@charset "utf-8";


#contenedor {
	height: 541px;
	width: 825px;
	border: 1px solid #999;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
	behavior: url(http://www.quantum3studio.com/PIE.htc); 
}