为了在 IE 6/7/8 上获得 CSS3 效果(边框半径、框阴影...),我使用css3pie
.
但是,css3pie 会css3-container (v1) / css3pie (v2)
在 DOM 中生成一些标签,这会扰乱预期的架构。这是一个例子:
CSS
pre {
border: 1px solid #aaa;
border-radius: 5px;
behavior: url(pie.htc);
}
HTML
<div class="foo">bar</div>
<p class="getme">paragraph</p>
<pre>preformatted</pre>
jQuery
// undefined expected: getme
alert($("pre").prev().attr("class"));
// css3-container expected: p
alert($("pre").prev()[0].tagName);
// getme expected: foo
alert($("pre").prev().prev().attr("class"));
// 4 expected: 3
alert($("body").children().size());
// will not set expected: Impact
$("p+pre").css({fontFamily: "Impact"});
// it almost affects all such jQuery selctors
实际生成的源码是这样的:
<DIV class="foo">bar</DIV>
<P class="paragraph">paragraph</P>
<css3-container...>
<border...>
<shape...><stroke></stroke><stroke></stroke></shape>
</border>
</css3-container>
<PRE>preformatted</PRE>
有没有人遇到过这种问题?任何解决方法?是否有 css3pie 的替代方法可以让 CSS3 在 IE 6/7/8 上运行?