下面的HTML用于显示FF3.x和IE中的垂直滚动条。我已经安装了FF6.0.2并且滚动条不再显示!!
<html>
<body>
There should be a scroll bar on the page
<div style="background:red;position: relative; left: -1px; width: 19px; height: 300px; overflow: auto;">
<div style="background:green;width: 1px; height: 540px;"></div>
</div>
</body>
</html>
如何让我的滚动条显示最新的FF?这仍然适用于IE9。我认为这是Windows7(Home Premium)和FF6.0.2组合的问题。我在Windows XP和FF6.0.2上测试了它,它工作正常。
答案 0 :(得分:0)
尝试设置溢出滚动:
overflow:scroll;
这是你要找的吗?