Bonjour,
Voilà je voudrais utiliser Pie CSS3 afin de rendre mes propriété CSS3 compatible pour IE9-...
J'ai mis en place comment indiquer dans la documentation du site les trois fichiers PIE et la propriété "behavior()" mais ça marche seulement pour certaines balises, c'est un peu aléatoire, comme si des propriétés rentrée en confusion, exemple d'une balise ou aucunes propriété CSS ne marche :
Exemple ou ça marche :
Anthony
Modifié par tonymx15 (20 Sep 2012 - 10:26)
Voilà je voudrais utiliser Pie CSS3 afin de rendre mes propriété CSS3 compatible pour IE9-...
J'ai mis en place comment indiquer dans la documentation du site les trois fichiers PIE et la propriété "behavior()" mais ça marche seulement pour certaines balises, c'est un peu aléatoire, comme si des propriétés rentrée en confusion, exemple d'une balise ou aucunes propriété CSS ne marche :
div.article{
background-image: url(images/bgH4.png); // ne marche pas
background-repeat: no-repeat; // ne marche pas
background-position: right bottom; // ne marche pas
border-bottom: 1px solid #aaa; // ne marche pas
-webkit-border-radius: 5px 5px 0px 0px; // ne marche pas
border-radius: 5px 5px 0px 0px; // ne marche pas
-webkit-box-shadow: 0px 0px 4px 0px #aaaaaa; // ne marche pas
box-shadow: 0px 0px 4px 0px #aaaaaa; // ne marche pas
-pie-box-shadow: 0px 0px 4px 0px #aaaaaa; // ne marche pas
behavior: url(wp-content/themes/rugbyclubdeslandes/PIE.htc); // ne marche pas
}
Exemple ou ça marche :
div.nav{
background-color: #232323;
-webkit-border-radius: 10px 10px 0px 0px;
border-radius: 10px 10px 0px 0px;
background: #232323;
background: -moz-linear-gradient(top, #232323 0%, #000000 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#232323), color-stop(100%,#000000));
background: -webkit-linear-gradient(top, #232323 0%,#000000 100%);
background: -o-linear-gradient(top, #232323 0%,#000000 100%);
background: -ms-linear-gradient(top, #232323 0%,#000000 100%);
background: linear-gradient(to bottom, #232323 0%,#000000 100%);
-pie-background: linear-gradient(#232323, #000000);
behavior: url(wp-content/themes/rugbyclubdeslandes/PIE.php);
}
Anthony
Modifié par tonymx15 (20 Sep 2012 - 10:26)