0

我试图弄清楚为什么我的 webkit 封面背景在我网站的某些页面上没有正确缩放。

URL 是http://www.finestgc.com/。在首页,你可以看到封面背景图片缩放正常,问题出在其他页面,例如:http ://www.finestgc.com/general.html在那里你可以看到图片也完全缩放大的。

CSS/HTML 专家可以帮我确定发生这种情况的原因吗?任何建议,将不胜感激。

4

2 回答 2

1

在您的 CSS 文件中,更改以下内容:

body
{
    background: url('images/blueprint.png') #222 no-repeat;
    ....
}

到:

body
{
    background: url('images/blueprint.png') #222 no-repeat fixed;
    ...
}
于 2012-08-11T21:46:38.787 回答
1

在您的第二页http://www.finestgc.com/general.html

CSS on body 添加此代码

背景附件:固定;

于 2012-08-11T22:53:05.717 回答