我的页面上有一个带有重复图像背景的滚动列表。我的问题是,当我滚动列表时,背景图像不会填满页面。我的 CSS 是:
background: transparent url(images/Background-Screen.png) repeat 0 0 !important;
我的页面上有一个带有重复图像背景的滚动列表。我的问题是,当我滚动列表时,背景图像不会填满页面。我的 CSS 是:
background: transparent url(images/Background-Screen.png) repeat 0 0 !important;
您是否尝试过阻止背景图像滚动?
background-attachment:fixed; // cause default value is "scroll"
在你的情况下:
background: transparent url(images/Background-Screen.png) repeat 0 0 fixed !important;
尝试这个:
body {
background-image: url(img.jpg);
background-position: center top;
background-size: 100% auto;
}
或者试试这个: