如果有人能帮助我解决这个问题,我将非常感激。
我在暂存链接上有this site。一切都在Safari和Firefox中运行良好。但是在Internet Explorer(我相信版本9)中,背景图像显示在右侧,即不在中心。
行为不端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;}
我已阅读其他帖子,但似乎无法找到答案。非常感谢您的投入!
答案 0 :(得分:1)
可以概括地说,IE中的背景在左侧和Chrome中心的隐含位置。
尝试使用background-position:center center
。