td 内的 asp 面板 (div) 上的最大高度问题
我有一个表,每行 3 行 1 列。每个都有一个 asp:panel 控件,我相信它本质上是呈现为 div 的。该div的最大高度:500,宽度:100%;以及其上的 Overflow:scroll 属性。
问题是,每当我尝试在 IE8 中加载页面时,它都会恢复兼容性审查,因为它无法呈现它。如果我删除最大高度,它就可以正常工作。
有什么想法吗?
I have a table with 3 rows and 1 column each. In each is an asp:panel control, which I believe is essentially rendered as a div. This div has max-height: 500, width: 100%; and overflow:scroll properties on it.
Problem is that whenever I try to load the page in IE8, it reverts to compatibility review as it cannot render it. If I remove max-height it works fine.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会尝试使用“height”和“max-height”来使其与 IE 兼容。并指定单位,在本例中为“500px”。
I would try to use "height" as well as "max-height" to make it work with IE. And also specify the unit, in this case "500px".