0
<span class="stMainServices st-facebook-counter" style="background-image: url(http://w.sharethis.com/images/facebook_counter.png);">&nbsp;<img src="http://w.sharethis.com/images/check-big.png" style="position: absolute; top: -7px; right: -7px; width: 19px; height: 19px; max-width: 19px; max-height: 19px; display: none;"></span>

背景画像 (facebook_counter) を自分の画像で変更できません。.css("background-image","url...") と .attr("style","new style") を使用して変更しようとしましたが、セレクター部分を間違って使用している可能性があります。

また、ワードプレスのインストールで wp socializer を使用してこのコードを取得しています。ありがとう

4

2 に答える 2

0

これは、CSS の優先順位によるものです。インライン スタイル (style="blah"タグ内の宣言を使用) は、スタイルシート内の項目よりも優先されます。

!importantスタイルのフラグでオーバーライドできますが、これは悪い習慣と見なされます。

.st-facebook-counter
{
    background-image: url('someotherimage.jpg') !important;
}
于 2012-12-19T21:14:27.137 に答える