内容在 IE 中垂直展开,但在 Firefox 中具有滚动条

发布于 2024-11-19 14:11:25 字数 708 浏览 0 评论 0原文

在我的弹出窗口中,我已经固定了大小,如果内部内容较大,应该有一个垂直滚动条,它在 Firefox 中工作正常(尽管我只想要垂直滚动条),但在 IE 中不起作用(使用 IE 8)。以下是图像。可能是什么问题?

Firefox 屏幕截图 Internet Explorer Screenshot

我的 CSS 代码

#compareParentDiv
{ 
overflow-y: auto;
//overflow-x: hidden; 
max-height: 380px;
width:100%
} 

我的 Div

$('#compareContent').empty();
    $('<div id="compareParentDiv" width="100%">'+
      '<table id="list2" cellspacing="0" cellpadding="0"></table>'+
            '<div id="gridpager2"></div></div>')
    .appendTo('#compareContent');

In my popup I have fixed the size, and if the inside content is larger there should come a vertical scrollbar, It works fine in firefox (though i only want vertical scrool bars) but does not work in IE(using IE 8). Below are the images. What could be the problem?

Firefox Screenshot
Internet Explorer Screenshot

My CSS code

#compareParentDiv
{ 
overflow-y: auto;
//overflow-x: hidden; 
max-height: 380px;
width:100%
} 

My Div

$('#compareContent').empty();
    $('<div id="compareParentDiv" width="100%">'+
      '<table id="list2" cellspacing="0" cellpadding="0"></table>'+
            '<div id="gridpager2"></div></div>')
    .appendTo('#compareContent');

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

笑,眼淚并存 2024-11-26 14:11:25

查看 overflow-y:scrolloverflow-y:auto,将其应用到应该滚动的元素上。

如果设置为 scroll 滚动条始终可见,如果设置为 auto 则由浏览器决定,但我相信所有浏览器都会在需要时提供滚动条,但在其他情况下不会提供。

Look into overflow-y:scroll or overflow-y:auto, apply it on the element that should scroll.

If set to scroll scrollbars are always visible, if set to auto it's up to the browser but I believe that all browsers provide a scrollbar when needed but not otherwise.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文