背景图像不会出现IE

时间:2012-03-16 07:13:01

标签: css internet-explorer

我有一个位置链接,旁边放置了背景图像,如下所示

<div class="rightLinks homeLocalChange">
    <a href="#" onclick="s_objectID=&quot;http://mypreviewdev.okla.seagate.com/portal/site/myseagate/menuitem.a7093785094fba806b42d710f014a_21&quot;;return this.s_oc?this.s_oc(e):true">ChangeLocation</a>
</div>

.threeCols .box .rightLinks a 
{
  background:url('../images/icn/icn_arrow_configure.png')no-repeat 95px 9px;
}

但不知何故,图像在FF / Chrome中看起来很完美,但在IE中却没有显示出来。

甚至在开发者内部它甚至不会出现我给出的CSS。

我使用IE8

2 个答案:

答案 0 :(得分:1)

尝试在)

之前no-repeat之后添加空格
.threeCols .box .rightLinks a { 
   background:url('../images/icn/icn_arrow_configure.png') no-repeat 95px 9px; 
}

答案 1 :(得分:0)

尝试给出宽度和高度

.threeCols .box .rightLinks a 
{
  background:url('../images/icn/icn_arrow_configure.png')no-repeat 95px 9px;
  width:500px;
  height:500px;

}