我有我背景的代码:
body{
background:url(pics/bg.jpg)no-repeat center center;background-size:cover;}
}
问题在于,当我向下滚动页面时,图像会滚动,我不想要它:请帮助
答案 0 :(得分:1)
你需要添加background-attachment:fixed;并删除一个}像这样:
body {
background:url(pics/bg.jpg)no-repeat center center;
background-size:cover;
background-attachment: fixed;
}
答案 1 :(得分:0)
您想要background-attachment: fixed
。
答案 2 :(得分:0)
问题是你没有使用background-attachment:fixed。 有两种方法可以做到:
body{background:url(pics/bg.png)no-repeat center center fixed;}
或
body{background:url(pics/bg.png)no-repeat center center;
background-attachment:fixed;}