0

如果有人可以帮助我解决这个问题,我将非常感激。

我在登台链接上有这个网站。在 Safari 和 Firefox 中一切正常。然而,在 Internet Explorer(我相信是版本 9)中,背景图像出现在最右侧,即不在中心。

行为不端的 IE 图像:

行为不端的 IE

由于每个页面都有不同的背景图片,代码如下

body {background-color:#000; color:#FFF; margin:0px; padding:0px;height:100%;}

#home {background:url(../images/Background2.jpg) top center no-repeat;background-color:#000;}

对于 Internet Explorer v9 或更低版本,我已包括:

#home {text-align:center;}

我已经阅读了其他帖子,但似乎找不到答案。非常感谢您的意见!

4

1 回答 1

1

可能是 IE 中背景的隐式位置 si 向左和 Chrome 中的中心。尝试使用background-position:center center.

于 2013-03-01T07:27:51.417 回答