サイト用に次の CSS を継承しましたが、それが役立つかどうかわかりません。IE のバージョンが 8 未満の場合、IE 固有のものとして含まれています。したがって、IE の 8 未満で PNG を処理しようとしていると推測されます。
さらに、一部のボットはリンクをたどろうとしていますが、これは、リンク/Content/','').replace('
を含む行をどのように読んでいるかと思わreplace
れます。ボットがこの CSS の読み取りに失敗したのか、それとも CSS がゴミなのかはわかりません。
誰かがこの CSS が有効で有用かどうかアドバイスしてください。ありがとう。
* html #nav li { z-index: expression( runtimeStyle.zIndex = 1, this == parentNode.firstChild ? (className += " first-child") : 0 );}
* html .tabs-container .t{
background-position:-9999px -9999px;
filter: progid:dximagetransform.microsoft.alphaimageloader(src='images/bg-tabs-container-t.png', sizingmethod='crop');
}
* html .tabs-container .c {
background-position:-9999px -9999px;
filter: progid:dximagetransform.microsoft.alphaimageloader(src='images/bg-tabs-container-c.png', sizingmethod='scale');
}
* html .tabs-container .b {
background-position:-9999px -9999px;
filter: progid:dximagetransform.microsoft.alphaimageloader(src='images/bg-tabs-container-b.png', sizingmethod='crop');
}
* html .png{
behavior: expression((this.runtimeStyle.behavior="none")&&(this.pngSet?this.pngSet=true:(this.nodeName == "IMG" && this.src.toLowerCase().indexOf('.png')>-1?(this.runtimeStyle.backgroundImage = "none",
this.runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + this.src + "', sizingMethod='image')",
this.src = "images/transparent.gif"):(this.origBg = this.origBg? this.origBg :this.currentStyle.backgroundImage.toString().replace('url("','').replace('")',''),
this.runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + this.origBg + "', sizingMethod='crop')",
this.runtimeStyle.backgroundImage = "none")),this.pngSet=true));}
}