内容在 IE 中垂直展开,但在 Firefox 中具有滚动条
在我的弹出窗口中,我已经固定了大小,如果内部内容较大,应该有一个垂直滚动条,它在 Firefox 中工作正常(尽管我只想要垂直滚动条),但在 IE 中不起作用(使用 IE 8)。以下是图像。可能是什么问题?
我的 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?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看
overflow-y:scroll
或overflow-y:auto
,将其应用到应该滚动的元素上。如果设置为
scroll
滚动条始终可见,如果设置为auto
则由浏览器决定,但我相信所有浏览器都会在需要时提供滚动条,但在其他情况下不会提供。Look into
overflow-y:scroll
oroverflow-y:auto
, apply it on the element that should scroll.If set to
scroll
scrollbars are always visible, if set toauto
it's up to the browser but I believe that all browsers provide a scrollbar when needed but not otherwise.