Background Image won't center in IE 9

2019-08-08 14:22发布

I'm making a site with a background image on every page. The image is centered in Chrome, Safari, Firefox... But it won't center in IE 9 (not sure about the other versions of IE).

Here's the 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, is the div tag for the entire site.)

Help, is very much appreciated. =)

2条回答
冷血范
2楼-- · 2019-08-08 14:28

I think you should have a look at the specs concerning Background, especially the background-position property.

查看更多
爷、活的狠高调
3楼-- · 2019-08-08 14:33

Have you tried setting background-position: center center;?

查看更多
登录 后发表回答