Fond de CSS ne fonctionne pas avec Chrome

J'ai le texte suivant du code HTML et CSS, pouvez-vous s'il vous plaît dites-moi pourquoi il fonctionne sur FF, IE9, jsfiddle et PAS sur le site en direct avec Google Chrome?

HTML:

<p>
    <a href="http://tambnguyen.com/wp-content/uploads/2012/05/256501557_1280.jpg">
        <span class="img_wrapper">
            <img class="tn" src="http://tambnguyen.com/wp-content/uploads/2012/05/256501557_1280-580x326.jpg"/>
        </span>
    </a>
</p>

CSS:

img.with-borders, img.tn { 
    margin: 5px 0 0 0;
    padding: 8px;
    background: #f1f1f1;
    border: solid #777;
    border-width: 1px 2px 2px 1px;
    box-shadow: 0 15px 15px -15px rgba(0, 0, 0, 0.9);
    -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
span.img_wrapper {
    background: url('http://tambnguyen.com/wp-content/themes/Polished/images/et-image-sliderleft-shadow2.png') no-repeat left bottom, url('http://tambnguyen.com/wp-content/themes/Polished/images/et-image-sliderright-shadow2.png') no-repeat right bottom;
    padding-bottom: 14px;
}
img.with-borders:hover, img.tn:hover, img.post_img:hover, div.related_post_thumb:hover  { 
    border-color: #000;
    filter: alpha(opacity=80);
    opacity: 0.80;
}

Le jsfiddle est ici http://jsfiddle.net/gNtea/, et le site en ligne est ici http://tambnguyen.com/4493-chemin-vert-giacomo-miceli/

Merci!

  • Désolé, pouvez-vous fournir des captures d'écran? En regardant dans JFiddle avec IE9 et Chrome, ils sont identiques.
  • Pour une chose, les transitions ne fonctionnent pas avec filter.
InformationsquelleAutor Tam N. | 2012-06-09