私はCSS3PIEを使用して、IEでborder-imageとborder-widthをレンダリングしています。IE9ではすべて正常に動作しますが、IE8では動作しません。
不思議なことに、IE8ではborder-image / widthは1つのDIV(ページの右上にあるメーリングリスト)では機能しますが、他のDIV(border-imageまたはbackground-imageが表示されていないメインコンテンツとサイドバー)では機能しません。 )。
このページで私が何を意味するかを見ることができます。
私が使用しているCSSの例(この場合はコンテンツDIV用)は次のとおりです。
div#content .padder {
border-width:7px;
-moz-border-image:url('/wp-content/themes/bp-soteria/images/background_content.png') 7 repeat;
-webkit-border-image:url('/wp-content/themes/bp-soteria/images/background_content.png') 7 repeat;
border-image:url('/wp-content/themes/bp-soteria/images/background_content.png') 7 repeat;
-o-border-image:url('/wp-content/themes/bp-soteria/images/background_content.png') 7 repeat;
background-image:url('/wp-content/themes/bp-soteria/images/background-main.png');
background-repeat: repeat;
background-clip: padding-box;
behavior: url(/pie/PIE.htc);
}
PIE.htcへのパスは正しいです。誰かがここで問題が何であるかを提案できますか?