模态弹出窗口在 IE7 中工作正常,但在 IE8 中不行

发布于 2024-12-12 04:45:21 字数 967 浏览 0 评论 0原文

我有一个在按钮单击时显示的面板(模式弹出扩展器)。现在,该面板在 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 技术交流群。

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

发布评论

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

评论(1

雨落星ぅ辰 2024-12-19 04:45:21

为了让其他遇到同样问题的开发人员方便,

我将 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.

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