Html PIE、IE8、jQuery InnerFade和CSS3边界半径-再次

Html PIE、IE8、jQuery InnerFade和CSS3边界半径-再次,html,internet-explorer,css,css3pie,Html,Internet Explorer,Css,Css3pie,我对派和IE8有个大问题。 首先,CSS: <!--[if lte IE 8]> <style type="text/css"> *.article_image img { position:relative; border-radius:20px; behavior:url(/js/PIE.htc); } </style> <![endif]--> HTML: 是

我对派和IE8有个大问题。 首先,CSS:

<!--[if lte IE 8]>
  <style type="text/css">
    *.article_image img {
        position:relative;
        border-radius:20px;
        behavior:url(/js/PIE.htc);

    }
  </style>
<![endif]-->

HTML:


是使用JQUERY innerfade工具的“内部淡入淡出”块的一部分。今天我想这就是造成麻烦的原因。
这在IE10中工作良好,开发者工具设置为“IE8”,显示模式为“IE8标准”。但在“真正的”IE8中不起作用。知道为什么吗?

在我找到更好的解决方案或不再使用IE8之前,我正在使用这个丑陋的小解决方案:

<!--[if lte IE 8]>
            <div style="position:absolute;"><img style="width:20px;height:20px;" alt="corner" src="template/left_top.png"></div>
            <div style="position:absolute;bottom:0px;"><img style="width:20px;height:20px;" alt="corner" src="template/left_bottom.png"></div>
            <div style="position:absolute;right:0px;"><img style="width:20px;height:20px;" alt="corner" src="template/right_top.png"></div>
            <div style="position:absolute;bottom:0px;right:0px;"><img style="width:20px;height:20px;" alt="corner" src="template/right_bottom.png"></div>
<![endif]-->


很好。但是如果要更改背景颜色,则会导致大量工作…

确定。我猜innerFade和PIE之间存在一些不兼容之处。如果您已经解决了自己的问题,请在下面输入您的答案,以方便他人,或者删除该问题。我没有找到解决方案。这只是一些更多的信息……那么它可能会出现在你的问题中。
<!--[if lte IE 8]>
            <div style="position:absolute;"><img style="width:20px;height:20px;" alt="corner" src="template/left_top.png"></div>
            <div style="position:absolute;bottom:0px;"><img style="width:20px;height:20px;" alt="corner" src="template/left_bottom.png"></div>
            <div style="position:absolute;right:0px;"><img style="width:20px;height:20px;" alt="corner" src="template/right_top.png"></div>
            <div style="position:absolute;bottom:0px;right:0px;"><img style="width:20px;height:20px;" alt="corner" src="template/right_bottom.png"></div>
<![endif]-->