在 IE 中显示动态 CheckBoxList 中的垂直滚动条? (在 Chrome 和 FF 中工作正常)
下面是我添加到网页中的动态 CheckBoxList 控件,在 Chrome 和 Firefox 中效果很好,可以正确显示垂直滚动条。然而,IE 不显示滚动条,它只是列出一个没有滚动条的大列表。我需要做什么才能让 IE 像其他两个浏览器一样正确显示?
var pMultiValueList = new CheckBoxList();
pMultiValueList.Style.Add("Position", "relative");
pMultiValueList.Style.Add("overflow", "auto");
pMultiValueList.Style.Add("display", "block");
谢谢!!
Below is a dynamic CheckBoxList control that I've added to my webpage, in Chrome and Firefox this works just fine, displaying the vertical scrollbar correctly. However, IE does not display scrollbars, it just lists a large list without scrolls. What do i need to do to get IE to show this correctly as the other two browsers do?
var pMultiValueList = new CheckBoxList();
pMultiValueList.Style.Add("Position", "relative");
pMultiValueList.Style.Add("overflow", "auto");
pMultiValueList.Style.Add("display", "block");
Thanks!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试给它一个固定的高度或要显示的项目数量。
Try giving it a fixed height or number of items to show.
创建一个由 div 包围的复选框列表的 ascx 并使用它。现在可以工作了。
Created an ascx of a checkboxlist surrounded by div and used that. Works now.