如何设置背景图像以滚动内容滚动?

时间:2011-08-02 12:05:14

标签: html css

<div>Content</div>

div{width:100px;height:100px;background:url('../images/image.gif') fixed repeat;overflow:auto;}

开发中的文本滚动背景,如何使内容滚动内容。 (假设内容延伸到div的底部以下)?

这有意义吗?

编辑:我希望背景图像在向下滚动时与内容一起移动。

当您向下滚动div时,背景图像应随内容向上移动。

3 个答案:

答案 0 :(得分:2)

从背景声明中删除fixed。滚动内容是什么意思?

div { width:100px; height:100px; background:url('../images/image.gif') repeat; }

答案 1 :(得分:0)

div{
 width:100px;
 height:100px;
 background:url('../images/image.gif') repeat scroll center top transparent;
}

答案 2 :(得分:-1)

尝试使用不同的背景块(背景图像等)