背景图片不会显示在最新版本的ie

时间:2015-03-21 02:08:40

标签: css

body {
   background-position: right;
   color: #FF7F27;
   background-color: transparent; 
   background-image url('../cityage_background3.png');
   background-size: 1386px 861px;
   background-repeat: no-repeat;
   background-attachment: fixed;
}

链接只是一个例子。我知道真正的链接有效,因为它出现在cchrome和firefox中。为什么背景图片不会出现在Internet Explorer中。

3 个答案:

答案 0 :(得分:1)

您的错误在这里:

background-image url('../cityage_background3.png');

应该是:

background-image: url('../cityage_background3.png');

你错过了:

编辑* IE不喜欢错误。

答案 1 :(得分:1)

您忘记了背景图片和网址

之间的

答案 2 :(得分:0)

如果它不起作用,那是因为你的路径不正确。确保您的图像位于正确的位置。