如何获得适用于 Internet Explorer 的水平滚动条?
我制作了一个 Facebook 应用程序,但我的图片比 520 像素更宽一些。我想在我的 html 文件中添加一个水平滚动条,但我有一个问题。我在我的 html 文件中使用了这段代码:
<div style="overflow-x:scroll; width: 1040px; height: 523px;">
</div>
这在 Firefox 中完美运行,但资源管理器中没有任何滚动条。您知道如何解决这个问题吗?
任何帮助将不胜感激!
I made a Facebook app, but my picture is a bit more wider, than 520 px. I wanted to add a horizontal scrollbar to my html file, but I have a problem. I used this code in my html file:
<div style="overflow-x:scroll; width: 1040px; height: 523px;">
</div>
This is working perfectly with Firefox, but there isn't any scrollbar in Explorer. Do you have any idea how to solve this problem?
Any help would be appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
IE 需要一些奇怪的组合才能真正按照您想要的方式工作。
看看这里:http://www.brunildo.org/test/Overflowxy2.html
尝试在执行overflow-x:scroll 之前给它overflow-y:hidden
也可以在执行overflow:hidden 或overflow-x:hidden 之后尝试overflow-x:auto。
IE needs some weird combination for it to actually work in the way you want it to.
Have a look here: http://www.brunildo.org/test/Overflowxy2.html
Try giving it overflow-y:hidden before doing overflow-x:scroll
Also try overflow-x:auto after doing overflow:hidden or overflow-x:hidden.