在 IE 中显示动态 CheckBoxList 中的垂直滚动条? (在 Chrome 和 FF 中工作正常)

发布于 2024-10-18 20:34:20 字数 358 浏览 2 评论 0原文

下面是我添加到网页中的动态 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 技术交流群。

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

发布评论

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

评论(2

阳光①夏 2024-10-25 20:34:20

尝试给它一个固定的高度或要显示的项目数量。

Try giving it a fixed height or number of items to show.

强者自强 2024-10-25 20:34:20

创建一个由 div 包围的复选框列表的 ascx 并使用它。现在可以工作了。

Created an ascx of a checkboxlist surrounded by div and used that. Works now.

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