多个背景IE8的CSS3问题

时间:2012-04-27 21:49:44

标签: css3 internet-explorer-8

我在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);

PIE,nothin'。

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

没什么。

现在?

2 个答案:

答案 0 :(得分:2)

您将该脚本发送到所有版本,即小于ie8;将条件评论更改为&lt;! - [if lt IE 9]&gt;或&lt;! - [if ie 8]&gt;

答案 1 :(得分:1)

您还可以使用

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

这意味着如果条件小于或等于IE8

,条件将起作用
相关问题