我正在使用固定位置为背景构建此站点。问题是 除了背景之外,所有元素似乎都滚动。 该网站的链接 http://automarketca.com/divasangola/index.php
非常感谢任何帮助。
谢谢。
答案 0 :(得分:0)
试试这个css,
background-attachment:scroll;
这将使bg滚动页面。
答案 1 :(得分:0)
#full-screen-background-image {
/*Existing Code */
position: absolute;
}
这将阻止它滚动。你还应该有一个z-index
,以便做好准备。
答案 2 :(得分:0)
这是滚动尝试更改图像
的cssz-index: -999;
min-height: 100%;
min-width: 1024px;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
固定更改为
答案 3 :(得分:0)
只需使用position: absolute;
其余的属性和值将保持不变。