固定的图像背景

时间:2016-10-12 09:16:29

标签: html css

我有一小段CSS代码body { background: url(images/bg.jpg) repeat-x scroll center top; },但我希望背景始终保持固定为背景图像,而不是固定在页面顶部。

实现这一目标的最佳做法是什么?如果您查看下面的图片,您可以看到背景固定在屏幕顶部,而不是固定为背景图像,即使向下滚动也是如此。

enter image description here

1 个答案:

答案 0 :(得分:4)

body { 
    background: url(images/bg.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
}