背景图像不会以IE 9为中心

时间:2012-03-25 19:15:14

标签: css internet-explorer

我正在制作一个每页都有背景图片的网站。图像以Chrome,Safari,Firefox为中心......但它不会以IE 9为中心(不确定其他版本的IE)。

这是CSS:

#page {
    background-image: url(images/mountain2.jpg);
    text-align: center;
    margin-top: -50px;
    margin-right: auto;
    margin-left: auto;
    background-repeat: no-repeat;
    background-color: #6C86FF;
    width:1292;
    height:972;
}

(#page,是整个网站的div标签。)

帮助,非常感谢。 =)

2 个答案:

答案 0 :(得分:1)

您是否尝试过设置background-position: center center;

答案 1 :(得分:0)

我认为你应该看看specs concerning Background,尤其是背景位置属性。