-1

在此处输入图像描述

我的页面上有一个带有重复图像背景的滚动列表。我的问题是,当我滚动列表时,背景图像不会填满页面。我的 CSS 是:

background: transparent url(images/Background-Screen.png) repeat 0 0 !important;

在此处输入图像描述

4

2 回答 2

1

您是否尝试过阻止背景图像滚动?

background-attachment:fixed; // cause default value is "scroll"

在你的情况下:

background: transparent url(images/Background-Screen.png) repeat 0 0 fixed !important;
于 2013-08-08T12:13:44.167 回答
0

尝试这个:

body {
    background-image: url(img.jpg);
    background-position: center top;
    background-size: 100% auto;
}

或者试试这个:

http://css-tricks.com/how-to-resizeable-background-image/

于 2013-08-08T12:10:54.653 回答