当我试图让我的背景使用100%的身体和html标签高度扩展页面的长度时,它会删除滚动的能力。我有什么方法可以做到这两点吗?我在ie8测试这个,但我不确定问题是否存在于其他地方。如果页面需要链接请申请,我可以发布。我的背景是一个css渐变,填充所有浏览器的页面,无论内容高度如何。然而,即,内容高度决定了背景的高度。我看了这个,这可以通过
来解决 html, body {height:100%;}//this results in a loss in the ability to scroll on pages with lengthy content but does produce a background that fills the page with short content.
或
html, body {min-height:100%}//this results in a background that falls short of the full page when short content is present
答案 0 :(得分:2)
将overflow-y: scroll;
添加到您的html标记。