使用css。
请不要将我推荐给其他链接。
修改
无论您如何滚动条形图,都始终在视口底部创建一些内容。
答案 0 :(得分:0)
如果您在使用IE6时遇到问题 - 请考虑使用重置脚本。它将使您的生活变得更加轻松。那里有很多不同风格的重置脚本,所以做一些研究并找到你喜欢的。就个人而言,我发现雅虎生产的产品适合用途。
使用重置脚本的想法是:
重置脚本执行扁平化 - IE6可以更合乎逻辑的方式处理。
强制性链接;)
http://developer.yahoo.com/yui/reset/
<强>解决方案强>
请记住使用此重置脚本,我为您提供以下解决方案。
正如您可能知道的那样,IE6不支持position:fixed。
要解决此问题,您可以使用以下代码段:
<style>
html, body {
height: 100%;
overflow: auto;
}
div#fixed-bottom {
position: fixed;
z-index: 2;
bottom: 0;
height: 20px;
width: 100%;
background-color: #eaeaea;
margin-top: -20px;
}
div#content {
position: relative;
width: 100%;
height: 100%;
overflow: auto;
}
* html div#fixed-bottom {
position: absolute;
}
</style>
哪个应该应用于包含<body></body>
中的以下元素的文档:
<div id="fixed-bottom">
<p>
I'm at the bottom
</p>
</div>
<div id="content">
<p>
Your content here.....
</p>
</div>
这应该有效,因为:
请注意,此解决方案仅在IE6设置为使用“严格模式”时才有效。这可以通过选择适当的doctype来明确设置;例如:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">