IE8 的多个背景 CSS3 问题



我在IE8中对这些行有更多问题:

 background: url('../images/sabao_x_top.gif') repeat-x top left,
        url('../images/sabao_x_foot.gif') repeat-x bottom left;

我使用:

-pie-background: url('../images/sabao_x_top.gif') repeat-x top left, url('../images/sabao_x_foot.gif') repeat-x bottom left;
    behavior: url(../PIE.htc);

馅饼,不行。

<!--[if lt IE 8]>
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE8.js"></script>
<![endif]-->

不'。

现在?

<div class="one_answers">将该

脚本发送到所有低于 IE8 的 IE 版本;将条件注释更改为 <!--[如果 LT IE 9]>或<!--[如果 IE 8]>

您还可以使用 IE8 以及 IE7 和 IE6 来定位

<!--[if lte IE 8]>
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE8.js"></script>
<![endif]-->

这意味着如果条件小于或等于IE8,则条件将起作用

最新更新