响应式滚动图像

Responsive, scrolling images

我确定对此有一个愚蠢的简单答案,但我只是在学习编码,我无法弄清楚这里发生了什么。

http://bit.ly/1zuki3W

图像会根据屏幕大小进行调整,但页面无法滚动。但是背景确实移动了。

那么,如何冻结我的背景图片(这可能只是苹果 OS 中的反弹?)?

还有,我如何获得滚动功能?

从正文中删除位置固定属性css喜欢

body {
background: url(pictures/Backgroundtest.jpg);
/* position: fixed;  remove this attribute */
font: Palatino;
margin-left: 30px;
margin-right: 30px;
overflow: auto;

}

您应该只从正文中删除 position:fixed

谢谢!