模态弹出窗口在 IE7 中工作正常,但在 IE8 中不行
我有一个在按钮单击时显示的面板(模式弹出扩展器)。现在,该面板在 IE7 中可以正确显示,但在 IE8 中会缩小。它缩小得太多,以至于里面的物品重叠了。
这是面板代码:
<asp:Panel ID="pnlGallery" runat="server">
<div id="divGallery" class="gallery">
<ul>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td>
<asp:DataList ID="ddlgal" RepeatColumns="5" runat="server" GridLines="None"
OnItemDataBound="ddlgal_ItemDataBound">
<ItemTemplate>
<table border="0" cellpadding="0" cellspacing="0" style="margin-left: 10px; margin-right: 10px;">
<tr>
<td>
<li>
如果需要更多代码,请告诉我。
I have a panel which I am showing on button click (modal pop up extender). Now, that panel is showing correctly in IE7 but shrink in IE8. It shrink so much that items in it got overlapped.
Here is the panel code:
<asp:Panel ID="pnlGallery" runat="server">
<div id="divGallery" class="gallery">
<ul>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td>
<asp:DataList ID="ddlgal" RepeatColumns="5" runat="server" GridLines="None"
OnItemDataBound="ddlgal_ItemDataBound">
<ItemTemplate>
<table border="0" cellpadding="0" cellspacing="0" style="margin-left: 10px; margin-right: 10px;">
<tr>
<td>
<li>
Please let me know if more code is required.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为了让其他遇到同样问题的开发人员方便,
我将 min-width 属性设置为适当的级别,并且在 IE7 和 IE8 中都运行良好。
Just for the sake for other developers who encounter the same problem,
I have set the min-width property to appropriate level and it worked fine in both IE7 and IE8.